[PATCH] staging: rtl8723bs: fix build when DEBUG_RTL871X is defined

2017-07-19 Thread Stefan Assmann
From: Stefan Assmann 

Defining DEBUG_RTL871X in rtw_debug.h causes the following compile error:
  CC [M]  drivers/staging/rtl8723bs/core/rtw_mlme.o
In file included from drivers/staging/rtl8723bs/core/rtw_mlme.c:18:0:
drivers/staging/rtl8723bs/core/rtw_mlme.c: In function ‘rtw_restruct_sec_ie’:
drivers/staging/rtl8723bs/core/rtw_mlme.c:2502:19: error: ‘ndissecuritytype’ 
undeclared (first use in thisfunction)

Remove the no longer existing parameter.

Signed-off-by: Stefan Assmann 
---
 drivers/staging/rtl8723bs/core/rtw_mlme.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme.c 
b/drivers/staging/rtl8723bs/core/rtw_mlme.c
index d5ab12305e59..84dabed7aeb6 100644
--- a/drivers/staging/rtl8723bs/core/rtw_mlme.c
+++ b/drivers/staging/rtl8723bs/core/rtw_mlme.c
@@ -2498,8 +2498,7 @@ sint rtw_restruct_sec_ie(struct adapter *adapter, u8 
*in_ie, u8 *out_ie, uint in
uintndisauthmode = psecuritypriv->ndisauthtype;
 
RT_TRACE(_module_rtl871x_mlme_c_, _drv_notice_,
-("+rtw_restruct_sec_ie: ndisauthmode =%d ndissecuritytype 
=%d\n",
- ndisauthmode, ndissecuritytype));
+("+rtw_restruct_sec_ie: ndisauthmode =%d\n", ndisauthmode));
 
/* copy fixed ie only */
memcpy(out_ie, in_ie, 12);
-- 
2.13.3

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH] rtl8723bs: fix build when DEBUG_RTL871X is defined

2017-07-04 Thread Stefan Assmann
On 04.07.2017 13:01, Kalle Valo wrote:
> Stefan Assmann  writes:
> 
>> Defining DEBUG_RTL871X in rtw_debug.h causes the following compile error:
>>   CC [M]  drivers/staging/rtl8723bs/core/rtw_mlme.o
>> In file included from drivers/staging/rtl8723bs/core/rtw_mlme.c:18:0:
>> drivers/staging/rtl8723bs/core/rtw_mlme.c: In function ‘rtw_restruct_sec_ie’:
>> drivers/staging/rtl8723bs/core/rtw_mlme.c:2502:19: error: ‘ndissecuritytype’ 
>> undeclared (first use in thisfunction)
>>
>> Remove the no longer existing parameter.
>>
>> Signed-off-by: Stefan Assmann 
> 
> Please use prefix "staging:" for staging patches.
> 

OK, will keep that in mind next time.
Thanks!

  Stefan
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[PATCH] rtl8723bs: fix build when DEBUG_RTL871X is defined

2017-07-03 Thread Stefan Assmann
Defining DEBUG_RTL871X in rtw_debug.h causes the following compile error:
  CC [M]  drivers/staging/rtl8723bs/core/rtw_mlme.o
In file included from drivers/staging/rtl8723bs/core/rtw_mlme.c:18:0:
drivers/staging/rtl8723bs/core/rtw_mlme.c: In function ‘rtw_restruct_sec_ie’:
drivers/staging/rtl8723bs/core/rtw_mlme.c:2502:19: error: ‘ndissecuritytype’ 
undeclared (first use in thisfunction)

Remove the no longer existing parameter.

Signed-off-by: Stefan Assmann 
---
 drivers/staging/rtl8723bs/core/rtw_mlme.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme.c 
b/drivers/staging/rtl8723bs/core/rtw_mlme.c
index 9e35573..f97f35a 100644
--- a/drivers/staging/rtl8723bs/core/rtw_mlme.c
+++ b/drivers/staging/rtl8723bs/core/rtw_mlme.c
@@ -2498,8 +2498,7 @@ sint rtw_restruct_sec_ie(struct adapter *adapter, u8 
*in_ie, u8 *out_ie, uint in
uintndisauthmode = psecuritypriv->ndisauthtype;
 
RT_TRACE(_module_rtl871x_mlme_c_, _drv_notice_,
-("+rtw_restruct_sec_ie: ndisauthmode =%d ndissecuritytype 
=%d\n",
- ndisauthmode, ndissecuritytype));
+("+rtw_restruct_sec_ie: ndisauthmode =%d\n", ndisauthmode));
 
/* copy fixed ie only */
memcpy(out_ie, in_ie, 12);
-- 
2.9.4

___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel