Re: r8192e_pci driver broken 3.14+

2014-05-21 Thread Sean MacLennan
On Sat, 19 Apr 2014 16:57:45 -0400 Sean MacLennan wrote: > A sparse error fixup removed a htons() which is required for the > driver to function. This patch puts the htons() back and fixes the > sparse warning correctly by changing the left side cast. > > Signed-off-by: Sean MacLennan > --- > d

[PATCH 2/2] staging: comedi: addi_apci_1564: move apci1564_do_insn_bits() to addi_apci_1564.c

2014-05-21 Thread Chase Southwood
This function is already compliant with the comedi API and is behaving as comedi core expects. This patch moves it out of addi-data/hwdrv_apci1564.c and into the driver proper since no further work needs to be done on it. Cc: Ian Abbott Cc: H Hartley Sweeten Signed-off-by: Chase Southwood ---

[PATCH 1/2] staging: comedi: addi_apci_1564: move apci1564_di_insn_bits() to addi_apci_1564.c

2014-05-21 Thread Chase Southwood
This function is already compliant with the comedi API and is behaving as comedi core expects. This patch moves it out of addi-data/hwdrv_apci1564.c and into the driver proper since no further work needs to be done on it. Cc: Ian Abbott Cc: H Hartley Sweeten Signed-off-by: Chase Southwood ---

[PATCH] staging: lustre: lnet: klnds: Remove prohibited space in socklnd.c

2014-05-21 Thread Masaru Nomura
Remove prohibited space between function name and open parenthesis to meet kernel coding style. Also, fix indenting due to changes. Signed-off-by: Masaru Nomura --- .../staging/lustre/lnet/klnds/socklnd/socklnd.c| 230 ++-- 1 file changed, 116 insertions(+), 114 deletions(-)

Re: [PATCH] staging: rtl8188eu: os_dep: usb_intf.c: Fix for possible null pointer dereference

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 11:51:06PM +0200, Rickard Strandqvist wrote: > Hi > > Exactly as you say Dan, cppcheck has found that there is a null check > at some point while the others in this case are missed. So I'm not for > unnecessary checks. > But we can instead agree that I make a patch that wil

Re: [PATCH] staging: rtl8188eu: os_dep: usb_intf.c: Fix for possible null pointer dereference

2014-05-21 Thread Rickard Strandqvist
Hi Exactly as you say Dan, cppcheck has found that there is a null check at some point while the others in this case are missed. So I'm not for unnecessary checks. But we can instead agree that I make a patch that will remove all null checks padapter? Dan: I'll check on the scripts/checkpatch.pl

Re: [PATCH 72/74] staging: rtl8723au: rtw_mlme_ext.c: Fixup some more unreadable formatting

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 09:38:36AM +0200, jes.soren...@redhat.com wrote: > @@ -6243,7 +6241,7 @@ int setkey_hdl23a(struct rtw_adapter *padapter, const > u8 *pbuf) > pmlmeinfo->key_index = pparm->keyid; > > /* write cam */ > - ctrl = BIT(15) | ((pparm->algorithm) << 2) | p

[PATCH 4/4] staging: r8192ee: Turn on build of the new driver

2014-05-21 Thread Larry Finger
In addition, this commit contains a TODO file for this driver Signed-off-by: Larry Finger --- drivers/staging/Kconfig| 2 ++ drivers/staging/Makefile | 1 + drivers/staging/rtl8192ee/Kconfig | 8 drivers/staging/rtl8192ee/Makefile | 40 +

[PATCH 0/4] New driver for Realtek RTL8192EE

2014-05-21 Thread Larry Finger
The RTL8192EE is a new wireless device that is being shipped in Lenovo T440s tablets. Merging of this driver was hurried so that users of this device would have wireless connections. A kernel image that includes this driver has been made available on my FTP site for about 10 days, and the problems

[PATCH] staging: dgap: replace dgap_savestring function with kstrdup

2014-05-21 Thread Mark Hounschell
Removes dgap_savestring function to use kstrdup instead. Signed-off-by: Mark Hounschell Cc: Greg Kroah-Hartman Tested-by: Mark Hounschell --- drivers/staging/dgap/dgap.c | 44 +++- 1 file changed, 15 insertions(+), 29 deletions(-) diff --git a/drivers/s

Re: [PATCH] staging: dgap: fix smatch warn: missing break in case

2014-05-21 Thread Mark Hounschell
On 05/21/2014 03:59 PM, Dan Carpenter wrote: > On Wed, May 21, 2014 at 01:03:09PM -0400, Mark Hounschell wrote: >> This patch fixes an smatch warning about a missing break >> in a case statement. >> > > I would prefer if we leave the code as-is and fix Smatch. The fix will > be to read the previ

Re: [PATCH] staging: dgap: fix smatch warn: missing break in case

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 01:03:09PM -0400, Mark Hounschell wrote: > This patch fixes an smatch warning about a missing break > in a case statement. > I would prefer if we leave the code as-is and fix Smatch. The fix will be to read the previous line or two for the word "fall" so just moving the

Re: [PATCH v2 3/3] Staging: bcm: Outsourced IsFlash2x() handling

2014-05-21 Thread Dan Carpenter
No problem, let me explain the bug better. On Wed, May 21, 2014 at 06:14:53PM +0200, Matthias Beyer wrote: > > > + ULONG ulDSDMagicNumInUsrBuff = 0; > > > + > > > + Status = BcmFlash2xCorruptSig(Adapter, Adapter->eActiveDSD); > > > + if (Status != STATUS_SUCCESS) { > > > + if (((stNVMReadW

[PATCH] staging: dgap: Remove unnecessary test on count

2014-05-21 Thread Mark Hounschell
This patch removes an unnecessary test. We've already tested it by the time we get here with no possiblity of it being changed. Signed-off-by: Mark Hounschell Cc: Greg Kroah-Hartman Tested-by: Mark Hounschell --- drivers/staging/dgap/dgap.c | 10 -- 1 file changed, 10 deletions(-) dif

[PATCH] staging: dgap: Remove erroneous comment

2014-05-21 Thread Mark Hounschell
This patch removes a false comment Signed-off-by: Mark Hounschell Cc: Greg Kroah-Hartman --- drivers/staging/dgap/dgap.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index b3ad3ac..6816cf7 100644 --- a/drivers/staging/dgap/dgap.c +

[PATCH] staging: dgap: Remove dead sniff buffer code

2014-05-21 Thread Mark Hounschell
The sniff buffer was a /proc filesystem file. This module no longer uses /proc. This patch removes the deaed code associated with the sniff buffer. Signed-off-by: Mark Hounschell Cc: Greg Kroah-Hartman Tested-by: Mark Hounschell --- drivers/staging/dgap/dgap.c | 124 ---

[PATCH net-next] Add hash value into RNDIS Per-packet info

2014-05-21 Thread Haiyang Zhang
It passes the hash value as the RNDIS Per-packet info to the Hyper-V host, so that the send completion notices can be spread across multiple channels. MS-TFS: 140273 Signed-off-by: Haiyang Zhang --- drivers/net/hyperv/hyperv_net.h |4 drivers/net/hyperv/netvsc_drv.c | 18

[PATCH] staging: ozwpan: Add missing blanklines after declarations

2014-05-21 Thread James A Shackleford
Signed-off-by: James A Shackleford --- (For Eudyptula Challenge) --- drivers/staging/ozwpan/ozhcd.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/drivers/staging/ozwpan/ozhcd.c b/drivers/staging/ozwpan/ozhcd.c index b3d401a..91bb29e 100644 --- a/drivers/staging/ozwpan/oz

[PATCH] lustre: Use time_before()

2014-05-21 Thread Manuel Schölling
To be future-proof and for better readability the time comparisons are modified to use time_before() instead of plain, error-prone math. Signed-off-by: Manuel Schölling --- drivers/staging/lustre/lustre/include/linux/obd.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH] staging: dgap: fix smatch warn: unsigned var is never less than zero

2014-05-21 Thread Mark Hounschell
This patch fixes a smatch warning about an unsigned integer being tested for less than zero. Signed-off-by: Mark Hounschell Cc: Greg Kroah-Hartman Tested-by: Mark Hounschell --- drivers/staging/dgap/dgap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/dgap

[PATCH] staging: dgap: fix smatch warn: missing break in case

2014-05-21 Thread Mark Hounschell
This patch fixes an smatch warning about a missing break in a case statement. Signed-off-by: Mark Hounschell Cc: Greg Kroah-Hartman Tested-by: Mark Hounschell --- drivers/staging/dgap/dgap.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/staging/dgap/dgap.c

Re: [PATCH v2 3/3] Staging: bcm: Outsourced IsFlash2x() handling

2014-05-21 Thread Matthias Beyer
On 20-05-2014 22:52:41, Dan Carpenter wrote: > On Tue, May 20, 2014 at 05:12:46PM +0200, Matthias Beyer wrote: > > This patch outsources the code from the IsFlash2x() check in > > bcm_char_ioctl_nvm_rw() function to shorten it. > > > > This patch introduces a bug. Please fix and resend. > > Als

Re: [PATCH 61/74] staging: rtl8723au: Move dummy_event_callback() to rtw_mlme_ext.c

2014-05-21 Thread Jes Sorensen
Dan Carpenter writes: > This comment is not related to your patch. > > On Wed, May 21, 2014 at 09:38:25AM +0200, jes.soren...@redhat.com wrote: >> static struct fwevent wlanevents[] = >> { >> -{0, rtw_dummy_event_callback23a}, /*0*/ >> +{0, &dummy_event_callback}, /*0*/ >>

Re: [PATCH 0/2] scsi: hyper-v storvsc changes by Ubuntu

2014-05-21 Thread Andy Whitcroft
On 16 May 2014 16:39, Ian Abbott wrote: > These changes to the Microsoft Hyper-V storage driver in Ubuntu Saucy's > 3.13 kernel look useful for the mainline kernel, especially as they > enable 'TRIM' support. > > Andy Whitcroft (2): > scsi: hyper-v storvsc switch up to SPC-3 > scsi: hyper-v st

Re: [PATCH 61/74] staging: rtl8723au: Move dummy_event_callback() to rtw_mlme_ext.c

2014-05-21 Thread Dan Carpenter
This comment is not related to your patch. On Wed, May 21, 2014 at 09:38:25AM +0200, jes.soren...@redhat.com wrote: > static struct fwevent wlanevents[] = > { > - {0, rtw_dummy_event_callback23a}, /*0*/ > + {0, &dummy_event_callback}, /*0*/ > {0, NULL}, > {0, NULL},

[PATCH v2 46/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h provided fctl bits

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen v2: Fix endian bug reported by Dan Carpenter Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 24 ++-- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c b/drivers/s

Re: [PATCH 46/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h provided fctl bits

2014-05-21 Thread Jes Sorensen
Dan Carpenter writes: > On Wed, May 21, 2014 at 09:38:10AM +0200, jes.soren...@redhat.com wrote: >> drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 23 +-- >> 1 file changed, 13 insertions(+), 10 deletions(-) >> >> diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c >>

Re: [PATCH 40/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h defines to set qos_ctrl

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 01:59:04PM +0200, Jes Sorensen wrote: > Dan Carpenter writes: > > On Wed, May 21, 2014 at 09:38:04AM +0200, jes.soren...@redhat.com wrote: > >> From: Jes Sorensen > >> > >> Signed-off-by: Jes Sorensen > >> --- > >> drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 9 +-

Re: [PATCH 46/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h provided fctl bits

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 09:38:10AM +0200, jes.soren...@redhat.com wrote: > drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 23 +-- > 1 file changed, 13 insertions(+), 10 deletions(-) > > diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c > b/drivers/staging/rtl8723au/ha

Re: [PATCH 40/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h defines to set qos_ctrl

2014-05-21 Thread Jes Sorensen
Dan Carpenter writes: > On Wed, May 21, 2014 at 09:38:04AM +0200, jes.soren...@redhat.com wrote: >> From: Jes Sorensen >> >> Signed-off-by: Jes Sorensen >> --- >> drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 9 + >> 1 file changed, 5 insertions(+), 4 deletions(-) >> >> diff --git a/

Re: [PATCH 40/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h defines to set qos_ctrl

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 09:38:04AM +0200, jes.soren...@redhat.com wrote: > From: Jes Sorensen > > Signed-off-by: Jes Sorensen > --- > drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 9 + > 1 file changed, 5 insertions(+), 4 deletions(-) > > diff --git a/drivers/staging/rtl8723au/hal/rtl

Re: [PATCH 05/74] staging: rtl8723au: Fix up some random bit-flag handling

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 10:49:55AM +0200, Jes Sorensen wrote: > Dan Carpenter writes: > > On Wed, May 21, 2014 at 09:37:29AM +0200, jes.soren...@redhat.com wrote: > >> diff --git a/drivers/staging/rtl8723au/core/rtw_mlme.c > >> b/drivers/staging/rtl8723au/core/rtw_mlme.c > >> index b912d09..8c6b0

Re: [PATCH 05/74] staging: rtl8723au: Fix up some random bit-flag handling

2014-05-21 Thread Jes Sorensen
Dan Carpenter writes: > On Wed, May 21, 2014 at 09:37:29AM +0200, jes.soren...@redhat.com wrote: >> diff --git a/drivers/staging/rtl8723au/core/rtw_mlme.c >> b/drivers/staging/rtl8723au/core/rtw_mlme.c >> index b912d09..8c6b094 100644 >> --- a/drivers/staging/rtl8723au/core/rtw_mlme.c >> +++ b/dr

[PATCH 63/74] staging: rtl8723au: rtw_cmd.h: Remove some more unused #defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/rtw_cmd.h | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/staging/rtl8723au/include/rtw_cmd.h b/drivers/staging/rtl8723au/include/rtw_cmd.h index efcbf5c..c49237b 100644 --- a/drivers/staging/r

[PATCH 33/74] staging: rtl8723au: rtw_make_wlanhdr23a(): Use IEEE80211_SN_TO_SEQ() to set seq_ctrl

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_xmit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723au/core/rtw_xmit.c b/drivers/staging/rtl8723au/core/rtw_xmit.c index a75ca65..e9882a5 100644 --- a/drivers/

[PATCH 59/74] staging: rtl8723au: Declare SetBWMode23a() static

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_wlan_util.c | 5 +++-- drivers/staging/rtl8723au/include/rtw_mlme_ext.h | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_wlan_util.c b/drivers/stagin

[PATCH 68/74] staging: rtl8723au: rtw_cfg80211_rx_action(): Use ieee80211_mgmt to parse action frame

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c | 26 ++- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211

[PATCH 52/74] staging: rtl8723au: rtw_mlme_ext.c: Get rid of SetToDs()/SetFrDs() usage

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c index e58b717..f724799

Re: [PATCH 11/74] staging: rtl8723au: Introduce struct rtw_wep_key to store our wep keys

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 09:37:35AM +0200, jes.soren...@redhat.com wrote: > diff --git a/drivers/staging/rtl8723au/core/rtw_ioctl_set.c > b/drivers/staging/rtl8723au/core/rtw_ioctl_set.c > index 347ea99..19e2e68 100644 > --- a/drivers/staging/rtl8723au/core/rtw_ioctl_set.c > +++ b/drivers/staging/r

Re: [PATCH 05/74] staging: rtl8723au: Fix up some random bit-flag handling

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 09:37:29AM +0200, jes.soren...@redhat.com wrote: > diff --git a/drivers/staging/rtl8723au/core/rtw_mlme.c > b/drivers/staging/rtl8723au/core/rtw_mlme.c > index b912d09..8c6b094 100644 > --- a/drivers/staging/rtl8723au/core/rtw_mlme.c > +++ b/drivers/staging/rtl8723au/core/r

Re: [PATCH 04/74] staging: rtl8723au: HalEEValueCheck(): content of a u8 is always >= 0

2014-05-21 Thread Dan Carpenter
On Wed, May 21, 2014 at 09:37:28AM +0200, jes.soren...@redhat.com wrote: > From: Jes Sorensen > > Signed-off-by: Jes Sorensen > --- > drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/rtl8723au/hal/rtl

[PATCH 32/74] staging: rtl8723au: rtl8723a_cmd.c: Properly initialize seq_ctrl

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Control frames will not be fragmented, so we should fully initialize the seq_ctrl field to zero. This avoids leftover stack bits remaining set in the generated frame's seq_ctrl field. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 57 +

[PATCH 64/74] staging: rtl8723au: rtw_ieee80211.c: Remove a number of unused functions

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ieee80211.c | 47 -- drivers/staging/rtl8723au/include/ieee80211.h | 2 -- 2 files changed, 49 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_ieee80211.c b/drivers/sta

[PATCH 41/74] staging: rl8723au: rtw_make_wlanhdr(): Use ieee80211_qos_hdr

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Use the kernel provided struct and defines to fill in qos_ctrl Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_xmit.c | 20 +--- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_xmit.c b/dri

[PATCH 72/74] staging: rtl8723au: rtw_mlme_ext.c: Fixup some more unreadable formatting

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 208 +- 1 file changed, 103 insertions(+), 105 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c ind

[PATCH 26/74] staging: rtl8723au: wifi.h: Remove a pile of unused WDS_ defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 67 1 file changed, 67 deletions(-) diff --git a/drivers/staging/rtl8723au/include/wifi.h b/drivers/staging/rtl8723au/include/wifi.h index 2be12e4..e7cf64a 100644 ---

[PATCH 51/74] staging: rtl8723au: Get rid of duplicate ieee80211 frame_control defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen This is all defined nicely in ieee80211.h, this was all duplication serving no other purpose than to obfuscate the code. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 49 1 file changed, 49 deletions(-) diff --gi

[PATCH 65/74] staging: rtl8723au: rtw_get_bcn_info23a(): Use cfg80211_find_ie()

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ieee80211.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_ieee80211.c b/drivers/staging/rtl8723au/core/rtw_ieee80211.c index 85eac7d.

[PATCH 60/74] staging: rtl8723au: Get rid of unused get_bsstype23a()

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_wlan_util.c | 9 - drivers/staging/rtl8723au/include/rtw_mlme_ext.h | 1 - 2 files changed, 10 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_wlan_util.c b/drivers/staging/rtl8723au/c

[PATCH 67/74] staging: rtl8723au: rtw_cfg80211_monitor_if_xmit_entry() use struct ieee80211_mgmt

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Use struct ieee80211_mgmt to parse action frame. In addition remove unused functions rtw_cfg80211_rx_p2p_action_public() and rtw_cfg80211_rx_action_p2p() Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/ioctl_cfg80211.h | 4 -- drivers/staging/rtl8723au/os_

[PATCH 54/74] staging: rtl8723au: rtl8723a_cmd.c: Get rid of SetToDs()/SetFrDs() usage

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c b/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c index 5f188af..0fc7586 100644 -

[PATCH 44/74] staging: rtl8723au: Remove unused SetFrameType() macro

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/staging/rtl8723au/include/wifi.h b/drivers/staging/rtl8723au/include/wifi.h index bfc0e1f..6b2f83e 100644 --- a/drivers/staging/rtl8723au

[PATCH 57/74] staging: rtl8723au: rtw_mlme_ext.c: Fix compile warnings

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Fixup #ifdefs to not build issue_assocrsp() and OnAuth23a() when CONFIG_8723AU_AP_MODE is not set. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/stagi

[PATCH 43/74] staging: rtl8723au: Get rid of obsolete SetPriority()/SetEOSP()/SetAckpolicy()

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 9 - 1 file changed, 9 deletions(-) diff --git a/drivers/staging/rtl8723au/include/wifi.h b/drivers/staging/rtl8723au/include/wifi.h index 4052de7..bfc0e1f 100644 --- a/drivers/staging/rtl872

[PATCH 61/74] staging: rtl8723au: Move dummy_event_callback() to rtw_mlme_ext.c

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen In addition get rid of a couple of empty *_event_callback() handlers and use dummy_event_callback() instead. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme.c| 14 -- drivers/staging/rtl8723au/core/rtw_mlme_ext.c| 14 +-

[PATCH 53/74] staging: rtl8723au: rtw_xmit.c: Get rid of SetToDs()/SetFrDs() usage

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_xmit.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_xmit.c b/drivers/staging/rtl8723au/core/rtw_xmit.c index d92673b..3869386 100644 --- a/driv

[PATCH 49/74] staging: rtl8723au: Declare issue_asocrsp() static

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c| 19 +++ drivers/staging/rtl8723au/include/rtw_mlme_ext.h | 2 -- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c

[PATCH 66/74] staging: rtl8723au: rtw_get_bcn_info23a(): Don't zero variables unncessarily

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen In addition remove excessive brackets. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ieee80211.c | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_ieee80211.c b/drivers/stagi

[PATCH 47/74] staging: rtl8723au: ioctl_cfg80211.c: Use ieee80211.h provided fctl bits

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c index 6323

[PATCH 56/74] staging: rtl8723au: rtw_mlme_ext.c: Declare a number of functions static

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen These are all just used locally, no point cluttering the kernel namespace with them. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c| 121 +-- drivers/staging/rtl8723au/include/rtw_mlme_ext.h | 17 2 files changed,

[PATCH 70/74] staging: rtl8723au: Declare rtw_site_survey() static

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c| 8 drivers/staging/rtl8723au/include/rtw_mlme_ext.h | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/stagi

[PATCH 71/74] staging: rtl8723au: rtw_mlme_ext.c: Improve bad formatting in event handlers

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 133 +- 1 file changed, 67 insertions(+), 66 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c index

[PATCH 74/74] staging: realtek: Convert /n to \n

2014-05-21 Thread Jes . Sorensen
From: Joe Perches Use proper line terminations. Signed-off-by: Joe Perches Signed-off-by: Jes Sorensen --- drivers/staging/rtl8188eu/hal/usb_ops_linux.c | 2 +- drivers/staging/rtl8188eu/os_dep/usb_intf.c | 2 +- drivers/staging/rtl8723au/hal/usb_ops_linux.c | 4 ++-- drivers/staging/rtl872

[PATCH 58/74] staging: rtl8723au: Don't compile rtw_ap.c when CONFIG_8723AU_AP_MODE=n

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/Makefile | 2 +- drivers/staging/rtl8723au/core/rtw_ap.c | 4 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/staging/rtl8723au/Makefile b/drivers/staging/rtl8723au/Makefile index f0615

[PATCH 50/74] staging: rtl8723au: Fix issue_assocrsp() to use IEEE80211_STYPE_* defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 28 +-- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c index

[PATCH 62/74] staging: rtl8723au: Get rid of some unused tdls definitions

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/rtw_cmd.h | 1 - drivers/staging/rtl8723au/include/rtw_mlme.h | 27 --- 2 files changed, 28 deletions(-) diff --git a/drivers/staging/rtl8723au/include/rtw_cmd.h b/drivers/staging/rt

[PATCH 34/74] staging: rtl8723au: Declare rtw_make_wlanhdr() static

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_xmit.c| 9 - drivers/staging/rtl8723au/include/rtw_xmit.h | 2 -- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_xmit.c b/drivers/staging/rtl8723

[PATCH 69/74] staging: rtl8723au: Remove obsolete rtw_action_frame_parse23a()

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ieee80211.c | 31 -- drivers/staging/rtl8723au/include/ieee80211.h | 1 - 2 files changed, 32 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_ieee80211.c b/drivers/stag

[PATCH 73/74] staging: rtl8723au: rtw_sta_mgt: change rtw_alloc_stainfo23a to use gfp_t instead if int

2014-05-21 Thread Jes . Sorensen
From: Karim Raslan This should fix a few sparse warnings like the following: CHECK drivers/staging/rtl8723au/core/rtw_ap.c drivers/staging/rtl8723au/core/rtw_ap.c:1054:45: warning: incorrect type in argument 3 (different base types) drivers/staging/rtl8723au/core/rtw_ap.c:1054:45:expect

[PATCH 48/74] staging: rtl8723au: rtw_mlme_ext.c: Get rid of most WIFI_* frame type usage

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 49 --- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c index

[PATCH 55/74] staging: rtl8723au: wifi.h: Get rid of last ugly frame_control manipulation macros

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/staging/rtl8723au/include/wifi.h b/drivers/staging/rtl8723au/include/wifi.h index 65cc4a9..cccea6a 100644 --- a/drivers/staging/rtl8723au

[PATCH 38/74] staging: rtl8723au: Get rid of SetPrivacy()/SetPwrMgt()/SetMData() macros

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Set these bits directly in the code instead of fiddling with wrapper macros. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 7 --- drivers/staging/rtl8723au/core/rtw_xmit.c | 6 -- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 7

[PATCH 01/74] staging: rtl8723au: Fix compiling with CONFIG_8723AU_BT_COEXIST=n

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Reported-by: Jim Davis Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/Makefile | 3 ++- drivers/staging/rtl8723au/core/rtw_cmd.c | 1 + drivers/staging/rtl8723au/core/rtw_mlme_ext.c| 3 --- drivers/staging/rtl8723au/core/rtw_pwrctrl.c

[PATCH 10/74] staging: rtl8723au: Use WLAN_CIPHER_SUITE_* to mark crypto type

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ap.c | 29 +++-- drivers/staging/rtl8723au/core/rtw_cmd.c | 9 +- drivers/staging/rtl8723au/core/rtw_ioctl_set.c| 6 +- drivers/staging/rtl8723au/core/rtw_mlme.c | 15 +--

[PATCH 40/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h defines to set qos_ctrl

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c b/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c index dc044cf..eb747d6 100644

[PATCH 16/74] staging: rtl8723au: Get rid of struct ndis_802_11_config

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen This exposed a nice endian bug in collect_bss_info23a() where two bytes in little-endian order were copied into a u32 and afterwards le32_to_cpu() was applied to it Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ap.c | 13 +++ drivers/st

[PATCH 46/74] staging: rtl8723au: rtl8723a_cmd.c: Use ieee80211.h provided fctl bits

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 23 +-- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c b/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c index eb747d

[PATCH 05/74] staging: rtl8723au: Fix up some random bit-flag handling

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Randomly mixing true/false/_FAIL/0/1 is a recipe for disaster Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_cmd.c | 2 +- drivers/staging/rtl8723au/core/rtw_mlme.c | 5 ++--- drivers/staging/rtl8723au/core/rtw_pwrctrl.c | 2 +- d

[PATCH 18/74] staging: rtl8723au: Get rid of struct ndis_802_11_var_ies

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ap.c | 23 ++-- drivers/staging/rtl8723au/core/rtw_mlme_ext.c| 55 + drivers/staging/rtl8723au/core/rtw_wlan_util.c | 143 +++ drivers/staging/rtl8723au/include/rtw

[PATCH 22/74] staging: rtl8723au: Use kernel provided WLAN_CAPABILITY_* definitions

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ieee80211.c | 6 +++--- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 7 +++ drivers/staging/rtl8723au/include/wifi.h | 12 3 files changed, 6 insertions(+), 19 deletions(-) diff -

[PATCH 20/74] staging: rtl8723au: Get rid of ClearMFrag/SetMFrag

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_xmit.c | 9 + drivers/staging/rtl8723au/include/wifi.h | 6 -- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_xmit.c b/drivers/staging/rtl8723a

[PATCH 35/74] staging: rtl8723au: Get rid of SetSeqNum()

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen In every last use case, the header was just cleared with memset() so there is no need to use the complex SetSeqNum() macro when cpu_to_le16(IEEE80211_SN_TO_SEQ()) output will do just fine. In addition, get rid of __le16 *fctrl usage when there is no need for it. Signed-off-by

[PATCH 37/74] staging: rtl8723au: Get rid of ugly SetDuration() macro usage

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_cmd.c | 5 +++-- drivers/staging/rtl8723au/include/wifi.h | 4 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_cmd.c b/drivers/staging/rtl872

[PATCH 25/74] staging: rtl8723au: Remove unused enum WIFI_REG_DOMAIN

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Must be the 17th duplicate of this list in the kernel Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 15 --- 1 file changed, 15 deletions(-) diff --git a/drivers/staging/rtl8723au/include/wifi.h b/drivers/staging/rtl8723au/include/wi

[PATCH 12/74] staging: rtl8723au: Move rtw_set_802_11_add_wep23a() to ioctl_cfg80211.c

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen This is only called from ioctl_cfg80211.c so we can move it here and declare it static. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ioctl_set.c| 76 -- drivers/staging/rtl8723au/include/rtw_ioctl_set.h | 2 - drivers/staging/rt

[PATCH 42/74] staging: rtl8723au: _issue_qos_nulldata23a(): Use struct ieee80211_qos_hdr

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_mlme_ext.c b/drivers/staging/rtl8723au/core/rtw_mlme_ext.c index 2c12ba6..5

[PATCH 45/74] staging: rtl8723au: rtw_xmit.c: Use IEEE80211_[FS]TYPE_ defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen In addition pkt_attrib->type a u16 and get rid of pattrib->stype Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_xmit.c| 8 drivers/staging/rtl8723au/include/rtw_xmit.h | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dr

[PATCH 13/74] staging: rtl8723au: rtw_cfg80211_add_wep(): Get rid of unused keyindex flags

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c index d89b400..bc

[PATCH 29/74] staging: rtl8723au: ioctl_cfg80211.c: Rip out < 3.14 kernel support

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c | 10 -- 1 file changed, 10 deletions(-) diff --git a/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c b/drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c index 5ef72b2..b8f012c 10064

[PATCH 39/74] staging: rtl8723au: rtl8723a_update_ramask(): Get rid of annoying debug message

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen There really is no need to print this message for anyone not trying to debug the driver: rtl8723a_update_ramask => mac_id:0, networkType:0x0b, mask:0x000f Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/usb_halinit.c | 7 +++ 1 file changed, 3 insert

[PATCH 31/74] staging: rtl8723au: ioctl_cfg80211.c: Properly initialize seq_ctrl

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Using SetSeqNum() on an uninitialized stack frame leaves us open to leaving random fragment bits set in seq_ctrl in the frame header. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c | 18 -- 1 file changed, 8 insertions(+), 1

[PATCH 04/74] staging: rtl8723au: HalEEValueCheck(): content of a u8 is always >= 0

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c b/drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c index e2d426a..0afc

[PATCH 19/74] staging: rtl8723au: wlan_bssdef.h: Remove some more unused #defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wlan_bssdef.h | 17 - 1 file changed, 17 deletions(-) diff --git a/drivers/staging/rtl8723au/include/wlan_bssdef.h b/drivers/staging/rtl8723au/include/wlan_bssdef.h index 09d35f1..664015d 1006

[PATCH 02/74] staging: rtl8723au: Use nl80211_iftype instead of driver's own custom types

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen In addition move rtw_set_802_11_infrastructure_mode23a() to ioctl_cfg80211.c and declare it static. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ap.c | 5 +- drivers/staging/rtl8723au/core/rtw_cmd.c | 19 ++-- drivers/staging/rtl87

[PATCH 11/74] staging: rtl8723au: Introduce struct rtw_wep_key to store our wep keys

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ioctl_set.c| 39 --- drivers/staging/rtl8723au/core/rtw_mlme.c | 4 +-- drivers/staging/rtl8723au/core/rtw_security.c | 11 +++ drivers/staging/rtl8723au/include/rtw_se

[PATCH 17/74] staging: rtli8723au: Get rid of struct ndis_802_11_fixed_ies

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ap.c | 10 + drivers/staging/rtl8723au/core/rtw_mlme.c | 22 ++- drivers/staging/rtl8723au/core/rtw_mlme_ext.c | 20 +++--- drivers/staging/rtl8723au/core/rt

[PATCH 00/74] staging-next: rtl8723au: rtl8723au-devel sync

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Greg, Please find attached a resync of the current rtl8723au-devel tree for staging-next. Note this set includes fixes from Karim Raslan and Joe Perches, and should also make the reported randconfig build problems go away. I had to fix up Karim's patch to make it apply due to

[PATCH 23/74] staging: rtl8723au: Use kernel provided IEEE80211_HT_OP_MODE_* defines

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen In addition remove unused HT_INFO_STBC_PARAM_* defines Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/core/rtw_ap.c | 22 +++--- drivers/staging/rtl8723au/include/wifi.h | 16 2 files changed, 11 insertions(+), 27 deletions(-) di

[PATCH 28/74] staging: rtl8723au: cfg80211_rtw_mgmt_tx(): type is always -1

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen Rip out P2P defines since they are effectively never used. Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/wifi.h | 14 -- drivers/staging/rtl8723au/os_dep/ioctl_cfg80211.c | 19 --- 2 files changed, 33 deletions(-) dif

[PATCH 07/74] staging: rtl8723au: Store algorithm type in a u32

2014-05-21 Thread Jes . Sorensen
From: Jes Sorensen This will allow us to switch to using WLAN_CIPHER_SUITE_* later Signed-off-by: Jes Sorensen --- drivers/staging/rtl8723au/include/rtw_cmd.h | 4 ++-- drivers/staging/rtl8723au/include/rtw_security.h | 6 +++--- drivers/staging/rtl8723au/include/sta_info.h | 2 +-

  1   2   >