]>
 
 
www.infradead.org Git - users/hch/dma-mapping.git/log 
 
 
 
 
 
 
Amitoj Kaur Chawla [Wed, 14 Oct 2015 20:12:11 +0000  (01:42  +0530)] 
 
staging: wlan-ng: Remove useless initialization 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:19 +0000  (00:58  +0530)] 
 
Staging: most: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:20 +0000  (00:58  +0530)] 
 
Staging: gdm724x: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
Semantic patch: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:23 +0000  (00:58  +0530)] 
 
Staging: unisys: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:24 +0000  (00:58  +0530)] 
 
Staging: slicoss: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:25 +0000  (00:58  +0530)] 
 
Staging: gdm72xx: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:26 +0000  (00:58  +0530)] 
 
Staging: comedi: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:27 +0000  (00:58  +0530)] 
 
Staging: rdma: amso1100: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:29 +0000  (00:58  +0530)] 
 
Staging: rdma: hfi1: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:30 +0000  (00:58  +0530)] 
 
Staging: media: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 18:32:14 +0000  (00:02  +0530)] 
 
Staging: rtl8188eu: rtw_ieee80211: Remove unnecessary cast 
 
Explicit type conversion is not required and should be removed. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 18:51:11 +0000  (00:21  +0530)] 
 
Staging: rtl8188eu: rf_cfg: Remove useless cast 
 
Type conversion of variables can be done by compiler implicitly so, 
explicit conversions should be removed. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Salva Peiró [Wed, 14 Oct 2015 15:48:02 +0000  (17:48 +0200)] 
 
staging/dgnc: fix info leak in ioctl 
 
The dgnc_mgmt_ioctl() code fails to initialize the 16 _reserved bytes of 
struct digi_dinfo after the ->dinfo_nboards member. Add an explicit 
memset(0) before filling the structure to avoid the info leak. 
 
Signed-off-by: Salva Peiró <speirofr@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Fri, 16 Oct 2015 15:20:10 +0000  (20:50 +0530)] 
 
Staging: iio: tsl2x7x_core: Remove unrequired parentheses from DIV_ROUND_UP 
 
Remove parentheses surrounding the first argument of the macro 
DIV_ROUND_UP as they are not required. 
Semantic patch used: 
 
@@ 
expression e1,e2; 
@@ 
DIV_ROUND_UP( 
- ( 
  e1 
- ) 
  ,e2) 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Fri, 16 Oct 2015 13:42:06 +0000  (19:12 +0530)] 
 
Staging: iio: ad7192: Remove unnecessary NULL test 
 
The variable pdata is already NULL tested before so, any further tests 
should be removed. 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Fri, 16 Oct 2015 05:20:56 +0000  (10:50 +0530)] 
 
Staging: iio: cdc: Remove unused macros 
 
Remove the macros since they are not used anywhere throughout the 
kernel. 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:19 +0000  (21:14 +0300)] 
 
staging: iio: adc: remove the use of CamelCase 
 
Remove the use of CamelCase to follow the kernel naming conventions 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:18 +0000  (21:14 +0300)] 
 
staging: iio: adc: remove multiple blank lines 
 
Remove multiple blank lines since there is no practical reason 
to have it 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:17 +0000  (21:14 +0300)] 
 
staging: iio: adc: add blank line after declarations 
 
Insert a blank line after declarations 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:16 +0000  (21:14 +0300)] 
 
staging: iio: adc: add spaces around binary operators 
 
Add spaces around binary operators like -, +, * etc 
in order to improve readability 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:15 +0000  (21:14 +0300)] 
 
staging: iio: adc: remove space after cast 
 
Remove the space after an explicit cast because there is no 
point in having it 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:14 +0000  (21:14 +0300)] 
 
staging: iio: adc: remove explicit comparison to NULL 
 
Use !condition instead off condition == NULL when comparing with NULL 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:13 +0000  (21:14 +0300)] 
 
staging: iio: adc: properly indent to match open paranthesis 
 
Indent parameters and arguments passed to function calls to match 
open paranthesis 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 18:14:12 +0000  (21:14 +0300)] 
 
staging: iio: adc: use kernel types u32 and u64 
 
Convert uint32_t to u32 and uint64_t to u64 in order to 
follow the kernel best practice 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Ioana Ciornei [Wed, 14 Oct 2015 19:34:27 +0000  (22:34 +0300)] 
 
staging: iio: cdc: simplify return flow 
 
Simplify return flow ad7150_write_event_params in order to reduce code length. 
Since i2c_smbus_write_word_data only returns a negative value or 0 the change is safe. 
 
This patch fixes the following coccicheck warning: 
 
drivers/staging/iio/cdc/ad7150.c:182:2-5: WARNING: end returns can be simpified if negative or 0 value 
 
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 18:16:05 +0000  (23:46 +0530)] 
 
Staging: rtl8192e: rtllib_softmac: Remove useless cast 
 
Explicit type conversion is not required to remove it. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Thu, 15 Oct 2015 20:47:20 +0000  (02:17  +0530)] 
 
Staging: lustre: lproc_ptlrpc: Replace simple_strtol with simple_stroul 
 
The variable inst is a __u32 type and hence the function used should be 
simple_strtoul. 
Semantic patch used: 
 
@@ 
typedef __u32; 
__u32 e; 
@@ 
e = 
- simple_strtol 
+ simple_strtoul 
  (...) 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Thu, 15 Oct 2015 20:06:31 +0000  (01:36  +0530)] 
 
Staging: lustre: lproc_osc: Change the variable to be checked 
 
The variable rc is supposed to hold the value returned by function 
kstrtoul which can either be 0, -EINVAL (-22) or -ERANGE (-34). 
Therefore, the check must be performed on rc instead of val for error 
values. Also, rc can never be greater than 0. 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Thu, 15 Oct 2015 19:30:10 +0000  (01:00  +0530)] 
 
Staging: lustre: obd_support.h: Remove unused OBD_SLAB_FREE_RTN0 
 
Remove macro OBD_SLAB_FREE_RTN0 since it is defined but not used 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Thu, 15 Oct 2015 14:16:06 +0000  (19:46 +0530)] 
 
Staging: lustre: mdc_locks: Remove extra test expression 
 
struct it is already NULL tested before so, it should be removed from 
the if test expression. 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Reviewed-by: Arnd Bergmann <arnd@arndb.de>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Thu, 15 Oct 2015 12:54:05 +0000  (18:24 +0530)] 
 
Staging: lustre: llite_lib: Remove unnecessary NULL check 
 
Variable op_data is already tested for NULL value and therefore any 
further checks should be removed. 
Semantic patch used: 
 
@@ expression E;@@ 
if(E==NULL) {... return ...;} 
- if(E){ 
  ... 
- } 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Thu, 15 Oct 2015 08:20:19 +0000  (13:50 +0530)] 
 
Staging: lustre: obd_class.h: Remove unused macro OBD_CHECK_MD_OP 
 
Remove macro OBD_CHECK_MD_OP since it is defined but not used 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:12:53 +0000  (13:42 +0530)] 
 
staging: lustre: ptlrpc: Remove useless initialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:21 +0000  (00:58  +0530)] 
 
Staging: lustre: obdclass: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
Semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:22 +0000  (00:58  +0530)] 
 
Staging: lustre: lnet: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Wed, 14 Oct 2015 19:28:28 +0000  (00:58  +0530)] 
 
Staging: lustre: ptlrpc: Remove unnecessary cast on void pointer 
 
void pointers do not need to be cast to other pointer types. 
 
The semantic patch used to find this: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 18:50:03 +0000  (00:20  +0530)] 
 
staging: lustre: osc: Remove useless cast on void pointer 
 
The semantic patch used to find this is: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 18:48:33 +0000  (00:18  +0530)] 
 
staging: lustre: mgc: Remove useless cast on void pointer 
 
The semantic patch used to find this is: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 18:47:08 +0000  (00:17  +0530)] 
 
staging: lustre: ptlrpc: sec_gc: Remove useless cast on void pointer 
 
The semantic patch used to find this is: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 18:45:23 +0000  (00:15  +0530)] 
 
staging: lustre: ptlrpc: pinger: Remove useless cast on void pointer 
 
The semantic patch used to find this is: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 18:43:30 +0000  (00:13  +0530)] 
 
staging: lustre: ptlrpc: service: Remove useless cast on void pointer 
 
The semantic patch used to find this is: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 18:41:37 +0000  (00:11  +0530)] 
 
staging: lustre: ptlrpc: sec_bulk: Remove useless cast on void pointer 
 
The semantic patch used to find this is: 
 
@r@ 
expression x; 
void* e; 
type T; 
identifier f; 
@@ 
 
( 
  *((T *)e) 
| 
  ((T *)x)[...] 
| 
  ((T *)x)->f 
| 
- (T *) 
  e 
) 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 17:18:50 +0000  (22:48 +0530)] 
 
Staging: rtl8192u: ieee80211_rx: Remove unnecessary code 
 
The variable frame_authorized is declared and mentioned in the code but 
is not used anywhere so, it should be removed. Also, two case statements 
are merged by removing an extra break. 
Semantic patch used: 
@@ 
type T; 
identifier i; 
constant C; 
position p != e.p; 
@@ 
 
- T i@p; 
  <+... when != i 
- i = C; 
  ...+> 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 17:33:50 +0000  (23:03 +0530)] 
 
Staging: rtl8192u: ieee80211_softmac: Remove extra NULL check 
 
Remove NULL check on a variable as it is already preceded by one. 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Punit Vara [Wed, 14 Oct 2015 18:25:54 +0000  (23:55 +0530)] 
 
Staging: rtl8712: Coding style warnings fix for block comments 
 
This patch is to the rtl871x_ioctl_linux.c file that fixes up following 
warnings reported by checkpatch.pl : 
 
-Block comments use * on subsequent lines 
-Block comments use a trailing */ on a separate line 
 
Signed-off-by: Punit Vara <punitvara@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Punit Vara [Wed, 14 Oct 2015 18:25:53 +0000  (23:55 +0530)] 
 
Staging: rtl8712: Use ether_addr_equal() over memcmp() 
 
This patch is to the rtl871x_ioctl_linux.c file that fixes up following 
warning reported by checkpatch.pl : 
 
-Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp() 
 
bssid and pnetwork->network.MacAddress both are 6 byte 
array which aligned with u16 
 
Signed-off-by: Punit Vara <punitvara@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Punit Vara [Wed, 14 Oct 2015 18:25:52 +0000  (23:55 +0530)] 
 
Staging: rtl8712: Fix warning prefer eth_broadcast_addr() over memset() 
 
This patch is to the rtl871x_ioctl_linux.c that fixes up following 
warning by checkpatch.pl: 
 
-Prefer eth_broadcast_addr() over memset() 
 
Signed-off-by: Punit Vara <punitvara@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Wed, 14 Oct 2015 20:59:55 +0000  (02:29  +0530)] 
 
staging: rtl8712: rtl8712_recv: Remove useless intialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 13:54:10 +0000  (19:24 +0530)] 
 
Staging: rtl8712: usb_ops_linux: Remove useless cast 
 
Explicit type conversion is not required and should be removed. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 13:44:59 +0000  (19:14 +0530)] 
 
Staging: rtl8712: rtl871x_io: Remove explicit cast 
 
Explicit typecasting is not required and should be removed. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 13:40:21 +0000  (19:10 +0530)] 
 
Staging: rtl8712: rtl8712_xmit: Remove useless cast 
 
Explicit typecasting of variables is not required and should be removed. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 12:18:58 +0000  (17:48 +0530)] 
 
Staging: rtl8712: rtl8712_io: Remove unnecessary cast 
 
Typecasting should be removed from variables as it is not required. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 12:08:23 +0000  (17:38 +0530)] 
 
Staging: rtl8712: rtl8712_cmd: Remove useless cast 
 
Explicit type conversions are not required so, remove them. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 12:02:58 +0000  (17:32 +0530)] 
 
Staging: rtl8712: os_intfs: Remove unnecessary cast 
 
Explicit type conversions are not required and so, they should be 
removed. 
Semantic patch used: 
@@ 
type T; 
T e; 
identifier x; 
@@ 
 
* T x = (T)e; 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:08:21 +0000  (13:38 +0530)] 
 
staging: rtl8723au: core: rtw_ap: Remove useless intialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:07:09 +0000  (13:37 +0530)] 
 
staging: rtl8723au: core: rtw_recv: Remove useless initialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:05:58 +0000  (13:35 +0530)] 
 
staging: rtl8723au: core: rtw_wlan_util: Remove useless intialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:04:41 +0000  (13:34 +0530)] 
 
staging: rtl8723au: hal: Remove useless intialisation 
 
Remove intialisation of a variable that is immediately reassigned. The 
problem was found using coccinelle semantic patch and further 
opportunities were identified by hand. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Wed, 14 Oct 2015 10:19:06 +0000  (15:49 +0530)] 
 
Staging: rtl8723au: rtw_mlme_ext: Remove unnecessary test expression 
 
Logical and-ing of a struct and its member should be replaced by the 
member only as the struct has already been NULL tested before. 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Reviewed-by: Daniel Baluta <daniel.baluta@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Tue, 13 Oct 2015 23:34:00 +0000  (05:04  +0530)] 
 
Staging: rtl8723au: rtl8723a_bt-coexist: Remove unused variable 
 
A variable is initialized and then assigned values in the code but is 
never used and therefore, should be removed. 
Semantic patch used: 
@@ 
type T; 
identifier i; 
constant C; 
position p != e.p; 
@@ 
 
- T i@p; 
  <+... when != i 
- i = C; 
  ...+> 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shivani Bhardwaj [Tue, 13 Oct 2015 21:36:20 +0000  (03:06  +0530)] 
 
Staging: sm750fb: sm750: Remove irrelevant code 
 
The variable ret is only declared and initialized to 0, but never 
referenced, so remove it. 
 
Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Mike Rapoport [Tue, 13 Oct 2015 06:26:46 +0000  (09:26 +0300)] 
 
staging: sm750fb: remove some unnecessary castings 
 
The clock divisor calculations in setMasterClock and setMemoryClock 
unnecessaryly cast unsigned int to unsigned int. Removing the casting. 
 
Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Mike Rapoport [Tue, 13 Oct 2015 06:26:45 +0000  (09:26 +0300)] 
 
staging: sm750fb: rename getChipClock to get_mxclk_freq 
 
The getChipClock is used to detect MXCLK frequency. Make it's name 
reflect what the function is actually doing. 
 
Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Mike Rapoport [Tue, 13 Oct 2015 06:26:44 +0000  (09:26 +0300)] 
 
staging: sm750fb: merge calcPLL and getPllValue into getChipClock 
 
The getChipClock function is used only to get MXCLK frequency, which 
makes most of getPllValue function unused and thus. The detection of 
MXCLK frequency may be implemented directly in getChipClock rendering 
getPllValue and calcPLL unused. 
 
Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Arnd Bergmann [Fri, 16 Oct 2015 20:45:39 +0000  (22:45 +0200)] 
 
staging/wilc: fix Kconfig dependencies, second try 
 
My first attempt to fix the Kconfig logic for wilc1000 was incomplete, 
as it missed the case where SPI is built-in while SDIO is modular 
and wilc1000 is configured as built-in in SPI mode (or vice versa), 
which would still lead to a link failure. 
 
This works around the problem by adding an intermediate Kconfig 
symbol "WILC1000_DRIVER" that controls visibility of the SDIO and 
SPI sub-drivers, so we can control the dependencies better. 
 
Signed-off-by: Arnd Bergmann <arnd@arndb.de>  
Fixes: 9535ebc5e9cc ("staging/wilc1000: fix Kconfig dependencies")  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Arnd Bergmann [Fri, 16 Oct 2015 20:05:34 +0000  (22:05 +0200)] 
 
staging: wilc1000: restore wilc_spi_dev variable 
 
A recent change to wilc1000 accidentally deleted an important 
variable, so we now get a build error when the SPI mode is 
selected: 
 
ERROR: "wilc_spi_dev" [drivers/staging/wilc1000/wilc1000.ko] undefined! 
 
This partially reverts the broken commit to put the variable back. 
 
Signed-off-by: Arnd Bergmann <arnd@arndb.de>  
Fixes: 56293ff232b9 ("staging: wilc1000: linux_wlan_spi: include header")  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Luis de Bethencourt [Fri, 16 Oct 2015 15:32:26 +0000  (16:32 +0100)] 
 
staging: wilc1000: Remove boolean comparisons 
 
Boolean tests do not need explicit comparison to true or false. 
 
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Shraddha Barke [Fri, 16 Oct 2015 05:17:11 +0000  (10:47 +0530)] 
 
Staging: wilc1000: Use kmemdup instead of kmalloc and memcpy 
 
Replace kmalloc followed by memcpy with kmemdup 
Problem found using coccicheck 
 
Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:19:47 +0000  (13:49 +0530)] 
 
staging: wilc1000: coreconfigurator: Remove useless initialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Amitoj Kaur Chawla [Thu, 15 Oct 2015 08:18:29 +0000  (13:48 +0530)] 
 
staging: wilc1000: wilc_wfi_cfgoperations: Remove useless initialisation 
 
Remove intialisation of a variable that is immediately reassigned. 
 
The semantic patch used to find this is: 
 
// <smpl> 
@@ 
type T; 
identifier x; 
constant C; 
expression e; 
@@ 
 
T x 
- = C 
 ; 
x = e; 
// </smpl> 
 
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 07:59:53 +0000  (15:59 +0800)] 
 
staging: wilc1000: join_req_drv can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:15 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8FlushedJoinReqDrvHandler 
 
This patch renames variable gu8FlushedJoinReqDrvHandler to join_req_drv 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 07:47:44 +0000  (15:47 +0800)] 
 
staging: wilc1000: info_element_size can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:14 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu32FlushedInfoElemAsocSize 
 
This patch renames variable gu32FlushedInfoElemAsocSize to info_element_size 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:13 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu32FlushedJoinReqSize 
 
This patch renames variable gu32FlushedJoinReqSize to join_req_size 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:12 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8FlushedAuthType 
 
This patch renames variable gu8FlushedAuthType to auth_type 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 07:18:34 +0000  (15:18 +0800)] 
 
staging: wilc1000: mode_11i can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:11 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8Flushed11iMode 
 
This patch renames variable gu8Flushed11iMode to mode_11i 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:10 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8FlushedInfoElemAsoc 
 
This patch renames variable gu8FlushedInfoElemAsoc to info_element 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 07:04:15 +0000  (15:04 +0800)] 
 
staging: wilc1000: join_req can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:09 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8FlushedJoinReq 
 
This patch renames variable gu8FlushedJoinReq to join_req 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:08 +0000  (13:25 +0900)] 
 
staging: wilc1000: remove unused variable gu32WidConnRstHack 
 
This patch removes unused the variable gu32WidConnRstHack. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:07 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8DelBcn 
 
This patch renames variable gu8DelBcn to del_beacon 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:06 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu32InactiveTime 
 
This patch renames variable gu32InactiveTime to inactive_time 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:05 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gs8GetIP 
 
This patch renames variable gs8GetIP to get_ip 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:04 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gs8SetIP 
 
This patch renames variable gs8SetIP to set_ip 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:03 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gu8Chnl 
 
This patch renames variable gu8Chnl to ch_no 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:02 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gs8lnkspd 
 
This patch renames variable gs8lnkspd to link_speed. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:01 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gs8Rssi 
 
This patch renames variable gs8Rssi to rssi 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 06:46:26 +0000  (14:46 +0800)] 
 
staging: wilc1000: scan_while_connected can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:25:00 +0000  (13:25 +0900)] 
 
staging: wilc1000: rename variable gbScanWhileConnected 
 
This patch renames variable gbScanWhileConnected to scan_while_connected 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:24:59 +0000  (13:24 +0900)] 
 
staging: wilc1000: rename variable gapu8RcvdAssocResp 
 
This patch renames variable gapu8RcvdAssocResp to rcv_assoc_resp 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 06:32:40 +0000  (14:32 +0800)] 
 
staging: wilc1000: periodic_rssi can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:24:58 +0000  (13:24 +0900)] 
 
staging: wilc1000: rename variable g_hPeriodicRSSI 
 
This patch renames variable g_hPeriodicRSSI to periodic_rssi 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 06:21:32 +0000  (14:21 +0800)] 
 
staging: wilc1000: hif_sema_deinit can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:24:57 +0000  (13:24 +0900)] 
 
staging: wilc1000: rename variable hSemHostIntDeinit 
 
This patch renames variable hSemHostIntDeinit to hif_sema_deinit 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:24:56 +0000  (13:24 +0900)] 
 
staging: wilc1000: rename variable hWaitResponse 
 
This patch renames variable hWaitResponse to hif_sema_wait_response 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
kbuild test robot [Thu, 15 Oct 2015 06:07:41 +0000  (14:07 +0800)] 
 
staging: wilc1000: hif_sema_driver can be static 
 
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:24:55 +0000  (13:24 +0900)] 
 
staging: wilc1000: rename variable hSemDeinitDrvHandle 
 
This patch renames variable hSemDeinitDrvHandle to hif_sema_driver 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>  
Leo Kim [Thu, 15 Oct 2015 04:24:54 +0000  (13:24 +0900)] 
 
staging: wilc1000: rename variable hSemHostIFthrdEnd 
 
This patch renames variable hSemHostIFthrdEnd to hif_sema_thread 
to avoid CamelCase naming convention. 
 
Signed-off-by: Leo Kim <leo.kim@atmel.com>  
Signed-off-by: Tony Cho <tony.cho@atmel.com>  
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>