Re: [v3.11][Regression] HID: hyperv: convert alloc+memcpy to memdup

2013-12-19 Thread David Herrmann
Hi On Thu, Dec 19, 2013 at 10:59 AM, Jiri Kosina jkos...@suse.cz wrote: On Thu, 19 Dec 2013, David Herrmann wrote: diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 253fe23..81eacd3 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -1334,7 +1334,7 @@

Re: [v3.11][Regression] HID: hyperv: convert alloc+memcpy to memdup

2013-12-19 Thread David Herrmann
Hi On Thu, Dec 19, 2013 at 11:08 AM, David Herrmann dh.herrm...@gmail.com wrote: Hi On Thu, Dec 19, 2013 at 10:59 AM, Jiri Kosina jkos...@suse.cz wrote: On Thu, 19 Dec 2013, David Herrmann wrote: diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 253fe23..81eacd3 100644

Re: [v3.11][Regression] HID: hyperv: convert alloc+memcpy to memdup

2013-12-19 Thread Jiri Kosina
On Thu, 19 Dec 2013, David Herrmann wrote: As this thread doesn't really contain any oops message nor the exact driver name (except mentioning hyperv and magicmouse), FWIW I recall the oopses being present somewhere in the ubuntu bug tracker, referenced in this thread. Thanks, -- Jiri

Re: [PATCH] beeceem: checkpatch whitespace cleanups

2013-12-19 Thread Dan Carpenter
On Thu, Dec 19, 2013 at 12:13:14PM +0100, Ralph Mueck wrote: This patch contains several whitespace cleanups for the beeceem driver that have been reported by checkpatch. Too ambigous. Subsequent patches will fix other issues that checkpatch complains about and which still remain after

[PATCH 2/2] vt6656: Combined nested conditions

2013-12-19 Thread Sebastian Rachuj
From: Simon Schuster li...@rationality.eu This patch reduces the level of indentation in bssdb.c of the vt6656 driver by transforming nested conditions to a series of logical conjunctions. E.g. if (cond1) { if (cond2) { block(); } } is transformed to if (cond1

[PATCH 0/2] vt6656: Cleanup of checkpatch problems in bssdb.c

2013-12-19 Thread Sebastian Rachuj
This patch series reformats the bssdb.c file of the vt6656 driver in staging. It resolves all errors and some warnings which checkpatch.pl discovered. However some occurrences of the following warnings are not patched: - Lines over 80 characters - Too many indentation levels - printk should

[PATCH] staging: dgap: Fix trailing whitespace in dgap_trace.c

2013-12-19 Thread Masanari Iida
This patch fixed trailing whitespace found by checkpatch.pl within dgap_trace.c Signed-off-by: Masanari Iida standby2...@gmail.com --- drivers/staging/dgap/dgap_trace.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/staging/dgap/dgap_trace.c

Re: [PATCH 1/2] vt6656: Make checkpatch happier

2013-12-19 Thread Dan Carpenter
On Thu, Dec 19, 2013 at 04:27:05PM +0100, Sebastian Rachuj wrote: From: Simon Schuster li...@rationality.eu This patch reformats bssdb.c of the vt6656 driver (in staging) to conform to the linux coding guidelines. The indentation is adjusted to use tabs, the argument lists and conditions

RE: [PATCH net-next] hyperv: Add support for Virtual Receive Side Scaling (vRSS)

2013-12-19 Thread Haiyang Zhang
-Original Message- From: Daniel Borkmann [mailto:dbork...@redhat.com] Sent: Thursday, December 19, 2013 1:45 PM To: Haiyang Zhang Cc: Ben Hutchings; da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan; o...@aepfle.de; jasow...@redhat.com; linux- ker...@vger.kernel.org;

RE: [PATCH net-next] hyperv: Add support for Virtual Receive Side Scaling (vRSS)

2013-12-19 Thread Haiyang Zhang
-Original Message- From: Ben Hutchings [mailto:bhutchi...@solarflare.com] Sent: Thursday, December 19, 2013 12:46 PM To: Haiyang Zhang Cc: da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan; o...@aepfle.de; jasow...@redhat.com; linux-ker...@vger.kernel.org;

Re: [PATCH net-next] hyperv: Add support for Virtual Receive Side Scaling (vRSS)

2013-12-19 Thread David Miller
From: Tom Herbert therb...@google.com Date: Thu, 19 Dec 2013 13:43:06 -0800 + u32 v, r; + int off, rem; + + off = idx / 8; + rem = idx % 8; + + v = (((unsigned int)key[off]) 24) + + (((unsigned int)key[off + 1]) 16) + + (((unsigned

[PATCH 11/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gxx_Status_Reg()

2013-12-19 Thread H Hartley Sweeten
The shared Status registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 05/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Mode_Reg()

2013-12-19 Thread H Hartley Sweeten
The Mode registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 00/36] staging: comedi: start cleaning up the ni_tio modules

2013-12-19 Thread H Hartley Sweeten
The ni_tio module is used by the ni_atmio, ni_660x, ni_pcimio and ni_mio_cs drivers to provide support functions for the NI General Purpose Counters. The ni_tiocmd module is used by the ni_660x and ni_pcimio to support async commands with the counters. These boards that have different register

[PATCH 16/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_DMA_Status_Reg()

2013-12-19 Thread H Hartley Sweeten
The DMA Status registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 30/36] staging: comedi: ni_tio: make ni_tio_insn_config() a proper comedi (*insn_config)

2013-12-19 Thread H Hartley Sweeten
Change the parameters to ni_tio_insn_config() to make it a proper comedi (*insn_config) function. This allows using it directly and removing the wrapper functions in the ni_660x and ni_mio_common modules. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott

[PATCH 06/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_LoadA_Reg()

2013-12-19 Thread H Hartley Sweeten
The LoadA registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 25/36] staging: comedi: ni_tio: move the MODULE_* stuff to the end of file

2013-12-19 Thread H Hartley Sweeten
For aesthetics, move all the MODULE_* information to the end of the file. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/staging/comedi/drivers/ni_tio.c | 32

[PATCH 20/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Interrupt_Enable_Reg()

2013-12-19 Thread H Hartley Sweeten
The Interrupt Enable registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 07/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_LoadB_Reg()

2013-12-19 Thread H Hartley Sweeten
The LoadB registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 08/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Input_Select_Reg()

2013-12-19 Thread H Hartley Sweeten
The Input Select registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 04/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_SW_Save_Reg()

2013-12-19 Thread H Hartley Sweeten
The SW Save registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 19/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Status_Reg()

2013-12-19 Thread H Hartley Sweeten
The Status registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Rename the define for the shared status register. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman

[PATCH 32/36] staging: comedi: ni_tiocmd: make ni_tio_cmd() a proper comedi (*do_cmd)

2013-12-19 Thread H Hartley Sweeten
Change the parameters to ni_tio_cmd() to make it a proper comedi (*do_cmd) function. The wrappers in the ni_660x and ni_mio_common modules are still needed to request the mite channel and setup the device before actually doing the command. Signed-off-by: H Hartley Sweeten

[PATCH 21/36] staging: comedi: ni_tio_internal.h: add missing NITIO_*_REG macro

2013-12-19 Thread H Hartley Sweeten
The HW Save registers are the only ones missing an access macro. Add one for completness. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/staging/comedi/drivers/ni_tio_internal.h | 1 + 1

[PATCH 26/36] staging: comedi: ni_tio.h: remove 'extern' from exported function prototypes

2013-12-19 Thread H Hartley Sweeten
The 'extern' is not required, remove it. Tidy up the function prototypes a bit. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/staging/comedi/drivers/ni_tio.h | 57

[PATCH 27/36] staging: comedi: ni_tio.h: remove subdev_to_counter()

2013-12-19 Thread H Hartley Sweeten
This inline helper function simply returns the s-private void *. Remove the helper and just get the s-private void * directly where needed. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 01/36] staging: comedi: ni_tio.h: rename the CamelCase enum ni_gpct_register labels

2013-12-19 Thread H Hartley Sweeten
As prefered by the CodingStyle, rename all the CamelCase labels of the enum ni_gpct_register. Cleanup all the helper functions in ni_tio_internal.h that used the enum. The 'counter_index' parameter to all the functions is the ni_gpct_device 'counter_index' which is initialized when the

[PATCH 29/36] staging: comedi: ni_tio: make ni_tio_winsn() a proper comedi (*insn_write)

2013-12-19 Thread H Hartley Sweeten
Change the parameters to ni_tio_winsn() to make it a proper comedi (*insn_write) function. This allows using it directly and removing the wrapper functions in the ni_660x and ni_mio_common modules. For aesthetics, rename the function. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com

[PATCH 15/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_DMA_Config_Reg()

2013-12-19 Thread H Hartley Sweeten
The DMA Config registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 34/36] staging: comedi: ni_660x: use a local var for the 'chip_index'

2013-12-19 Thread H Hartley Sweeten
Use a local variable for the 'counter-chip_index' to help shorten the long lines and clarify the code. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/staging/comedi/drivers/ni_660x.c |

[PATCH 23/36] staging: comedi: ni_tio: use a local var for the 'counter_index'

2013-12-19 Thread H Hartley Sweeten
Use a local variable for the 'counter-counter_index' to help shorten the long lines and ugly line breaks. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/staging/comedi/drivers/ni_tio.c |

[PATCH 12/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gxx_Joint_Reset_Reg()

2013-12-19 Thread H Hartley Sweeten
The shared Reset registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 09/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Counting_Mode_Reg()

2013-12-19 Thread H Hartley Sweeten
The Counting Mode registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 35/36] staging: comedi: ni_660x: remove dma_selection_counter()

2013-12-19 Thread H Hartley Sweeten
The counter-chip_index will always be counters_per_chip due to the initialization of the subdevices during the attach of the board. The dma_selection_counter() helper just does a BUG_ON() check before returning the original value. Just use the original value directly in the caller and remove the

[PATCH 33/36] staging: comedi: ni_660x: rename the CamelCase enum NI_660x_Register and labels

2013-12-19 Thread H Hartley Sweeten
As prefered by the CodingStyle, rename this CamelCase enum and its labels. Also, cleanup the ni_gpct_to_660x_register() helper function. Just return the ni_660x_register for each ni_gpct_register and remove the unnecessary break statements after the return statements. Signed-off-by: H Hartley

[PATCH 28/36] staging: comedi: ni_tio: make ni_tio_rinsn() a proper comedi (*insn_read)

2013-12-19 Thread H Hartley Sweeten
Change the parameters to ni_tio_rinsn() to make is a proper comedi (*insn_read) function. This allows using it directly and removing the wrapper functions in the ni_660x and ni_mio_common modules. For aesthetics, rename the function. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com

RE: [PATCH net-next] hyperv: Add support for Virtual Receive Side Scaling (vRSS)

2013-12-19 Thread Haiyang Zhang
-Original Message- From: Tom Herbert [mailto:therb...@google.com] Sent: Thursday, December 19, 2013 4:43 PM To: Haiyang Zhang Cc: Daniel Borkmann; Ben Hutchings; da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan; o...@aepfle.de; jasow...@redhat.com;

RE: [PATCH net-next] hyperv: Add support for Virtual Receive Side Scaling (vRSS)

2013-12-19 Thread Haiyang Zhang
-Original Message- From: Tom Herbert [mailto:therb...@google.com] Sent: Thursday, December 19, 2013 2:59 PM To: Haiyang Zhang Cc: Daniel Borkmann; Ben Hutchings; da...@davemloft.net; net...@vger.kernel.org; KY Srinivasan; o...@aepfle.de; jasow...@redhat.com;

[PATCH] staging: dgap: uses kzalloc for allocating memory

2013-12-19 Thread Lidza Louina
Originally, this driver created it's own allocating function. This patch removes that function and calls kzalloc directly. This patch affects: - driver.c - driver.h - fep5.c - tty.c Signed-off-by: Lidza Louina lidza.lou...@gmail.com --- drivers/staging/dgap/dgap_driver.c | 18

[PATCH 02/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Autoincrement_Reg()

2013-12-19 Thread H Hartley Sweeten
The AutoIncrement registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 36/36] staging: comedi: ni_660x: tidy up set_tio_counterswap()

2013-12-19 Thread H Hartley Sweeten
Clean up the multi-line comment and tidy the function a bit. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org --- drivers/staging/comedi/drivers/ni_660x.c | 21 - 1 file changed,

[PATCH 14/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gxx_Joint_Status2_Reg()

2013-12-19 Thread H Hartley Sweeten
The shared Status2 registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 13/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gxx_Joint_Status1_Reg()

2013-12-19 Thread H Hartley Sweeten
The shared Status1 registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 22/36] staging: comedi: ni_tiocmd: use a local var for the 'counter_index'

2013-12-19 Thread H Hartley Sweeten
Use a local variable for the 'counter-counter_index' to help shorten the long lines and ugly line breaks. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH 18/36] staging: comedi: ni_tio_internal.h: replace NITIO_Gi_Interrupt_Acknowledge_Reg()

2013-12-19 Thread H Hartley Sweeten
The Interrupt Acknowledge registers are sequential in the enum ni_gpct_register. Replace this inline CamelCase function with a simple define. Signed-off-by: H Hartley Sweeten hswee...@visionengravers.com Cc: Ian Abbott abbo...@mev.co.uk Cc: Greg Kroah-Hartman gre...@linuxfoundation.org ---

[PATCH] staging: lustre: fix return value check in capa_hmac()

2013-12-19 Thread Wei Yongjun
From: Wei Yongjun yongjun_...@trendmicro.com.cn In case of error, the function crypto_alloc_hash() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Wei Yongjun yongjun_...@trendmicro.com.cn ---

[PATCH 00/11] staging: r8188eu: Clean up a number of pointless wrappers

2013-12-19 Thread Larry Finger
Because the original driver was designed to build for Windows, FreeBSD, and Linux, there are wrappers for many of the OS primitives. These patches remove a number of them. Signed-off-by: Larry Finger larry.fin...@lwfinger.net Larry Finger (11): staging: r8188eu: Remove pointless thread_exit

[PATCH 02/11] staging: r8188eu: Remove wrapper around spin_lock_bh

2013-12-19 Thread Larry Finger
Some comment lines that mentioned spin_lock_bh() are also removed. Signed-off-by: Larry Finger larry.fin...@lwfinger.net --- drivers/staging/rtl8188eu/core/rtw_ap.c | 38 drivers/staging/rtl8188eu/core/rtw_br_ext.c | 16 +++

[PATCH 06/11] staging: r8188eu: Remove wrapper around spin_lock_init

2013-12-19 Thread Larry Finger
Signed-off-by: Larry Finger larry.fin...@lwfinger.net --- drivers/staging/rtl8188eu/core/rtw_ap.c | 2 +- drivers/staging/rtl8188eu/core/rtw_mlme.c | 2 +- drivers/staging/rtl8188eu/core/rtw_recv.c | 4 ++-- drivers/staging/rtl8188eu/core/rtw_sta_mgt.c | 8

[PATCH 07/11] staging: r8188eu: Remove calls to _rtw_spinlock_free

2013-12-19 Thread Larry Finger
This wrapper does nothing on Linux. When calls to it were removed, a number of routines became empty and could also be removed. Signed-off-by: Larry Finger larry.fin...@lwfinger.net --- drivers/staging/rtl8188eu/core/rtw_ap.c | 2 - drivers/staging/rtl8188eu/core/rtw_cmd.c |

[PATCH 11/11] staging: r8188eu: Replace wrappers ODM_StallExecution, ODM_delay_us, and rtw_udelay_os

2013-12-19 Thread Larry Finger
Each instance may bre replaced by udelay Signed-off-by: Larry Finger larry.fin...@lwfinger.net --- drivers/staging/rtl8188eu/core/rtw_efuse.c | 2 +- drivers/staging/rtl8188eu/hal/HalPwrSeqCmd.c | 6 +++--- drivers/staging/rtl8188eu/hal/odm.c| 10 -

[PATCH 09/11] staging: r8188eu: Replace wrappers ODM_sleep_ms() and rtw_msleep_os() with a simple msleep

2013-12-19 Thread Larry Finger
Signed-off-by: Larry Finger larry.fin...@lwfinger.net --- drivers/staging/rtl8188eu/core/rtw_cmd.c | 4 ++-- drivers/staging/rtl8188eu/core/rtw_mlme.c | 2 +- drivers/staging/rtl8188eu/core/rtw_mlme_ext.c | 16 drivers/staging/rtl8188eu/core/rtw_mp.c

[PATCH] drivers/staging/bcm: Integer overflow

2013-12-19 Thread Wenliang Fan
The checking condition in 'validateFlash2xReadWrite()' is not sufficient. A large number invalid would cause an integer overflow and pass the condition, which could cause further integer overflows in 'Bcmchar.c:bcm_char_ioctl()'. Signed-off-by: Wenliang Fan fanwle...@gmail.com ---

Re: [PATCH 02/11] staging: r8188eu: Remove wrapper around spin_lock_bh

2013-12-19 Thread Dan Carpenter
On Thu, Dec 19, 2013 at 10:38:34PM -0600, Larry Finger wrote: Some comment lines that mentioned spin_lock_bh() are also removed. Signed-off-by: Larry Finger larry.fin...@lwfinger.net @@ -1509,10 +1509,6 @@ _func_enter_; rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH); -