Re: pull-request: iwlwifi-next 2017-04-13

2017-04-17 Thread Kalle Valo
Kalle Valo writes: > Luca Coelho writes: > >> Here's my first pull-request intended for v4.12. This is generic >> development work, nothing really stands out. More >> details in the tag description. >> >> I have sent this out before, and kbuildbot reported success. >> >> Please let me know if

Re: pull-request: iwlwifi-next 2017-04-13

2017-04-17 Thread Kalle Valo
Luca Coelho writes: > Here's my first pull-request intended for v4.12. This is generic > development work, nothing really stands out. More > details in the tag description. > > I have sent this out before, and kbuildbot reported success. > > Please let me know if there are any issues. > > Cheer

Submit -next patches for 4.12 NOW

2017-04-17 Thread Kalle Valo
Hi, Linus released 4.11-rc7 and said that it might be the last rc release. Which means that the merge window is really close and I need to get all the patches ready before it opens. So if there's anything you want to have in 4.12 submit them NOW for wireless-drivers-next. _Important_ bug fixes ca

[PATCH] nl80211: Fix enum type of variable in nl80211_put_sta_rate()

2017-04-17 Thread Matthias Kaehlcke
rate_flg is of type 'enum nl80211_attrs', however it is assigned with 'enum nl80211_rate_info' values. Change the type of rate_flg accordingly. Signed-off-by: Matthias Kaehlcke --- net/wireless/nl80211.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/wireless/nl80211.c b

[PATCH] mac80211: ibss: Fix channel type enum in ieee80211_sta_join_ibss()

2017-04-17 Thread Matthias Kaehlcke
cfg80211_chandef_create() expects an 'enum nl80211_channel_type' as channel type however in ieee80211_sta_join_ibss() NL80211_CHAN_WIDTH_20_NOHT is passed in two occasions, which is of the enum type 'nl80211_chan_width'. Change the value to NL80211_CHAN_NO_HT (20 MHz, non-HT channel) of the channel

[PATCH 2/2] rt2800: do VCO calibration after programming ALC

2017-04-17 Thread Daniel Golle
Somehow AP doesn't come up and the first scan fails if we don't do VCO calibration every time. The vendor driver duplicates the VCO calibration function into the channel switching logic, we can do the same with less duplication. Signed-off-by: Daniel Golle --- drivers/net/wireless/ralink/rt2x00/

[PATCH 1/2] rt2800: fix LNA gain assignment for MT7620

2017-04-17 Thread Daniel Golle
The base value used for MT7620 differs from Rt5392 which resulted in quite bad RX signal quality. Fix this by using the correct base value as well as the LNA calibration values for HT20. Reported-by: Tom Psyborg Signed-off-by: Daniel Golle --- drivers/net/wireless/ralink/rt2x00/rt2800lib.c | 18

Re: [PATCH 12/13] rtlwifi: btcoex: 21a 1ant: fix some coding style issues

2017-04-17 Thread Joe Perches
On Mon, 2017-04-17 at 12:13 -0500, Larry Finger wrote: > On 04/17/2017 11:09 AM, Joe Perches wrote: > > On Sun, 2017-04-16 at 19:06 -0500, Larry Finger wrote: > > > From: Yan-Hsuan Chuang > > > > > > Fix alignment for coding style consistency. > > > > aside: > > > > Are all the btcoexist varian

Re: [PATCH 12/13] rtlwifi: btcoex: 21a 1ant: fix some coding style issues

2017-04-17 Thread Larry Finger
On 04/17/2017 11:09 AM, Joe Perches wrote: On Sun, 2017-04-16 at 19:06 -0500, Larry Finger wrote: From: Yan-Hsuan Chuang Fix alignment for coding style consistency. aside: Are all the btcoexist variants for this code identical? 8192e2ant.c 8723b1ant.c 8723b2ant.c 8821a1ant.c 8821a2ant.c M

Re: [PATCH 12/13] rtlwifi: btcoex: 21a 1ant: fix some coding style issues

2017-04-17 Thread Joe Perches
On Sun, 2017-04-16 at 19:06 -0500, Larry Finger wrote: > From: Yan-Hsuan Chuang > > Fix alignment for coding style consistency. aside: Are all the btcoexist variants for this code identical? 8192e2ant.c 8723b1ant.c 8723b2ant.c 8821a1ant.c 8821a2ant.c Maybe some of these functions should be ce

Re: [PATCH RFC] Make BCMA a menuconfig to ease disabling it all

2017-04-17 Thread Vincent Legoll
Argh, looks like the "--in-reply-to" did not hook it up properly... This was intended as a reply to: http://lkml.iu.edu/hypermail/linux/kernel/1704.1/04654.html Re: [PATCH] Make AMBA a menuconfig to ease disabling it all from (Fri Apr 14 2017 - 08:33:57 EST) Sorry -- Vincent Legoll

[PATCH RFC] Make BCMA a menuconfig to ease disabling it all

2017-04-17 Thread Vincent Legoll
Hello, this is more what I wanted to achieve, an easily disableable BCMA menuconfig. This is working as intended on x86_64 defconfig, whereas it is harder to disable for ARCH=arm because of "select"s. But that's less of an issue, as those arch's defconfigs may very well want the feature enbled,

[PATCH] Make BCMA a menuconfig to ease disabling it all

2017-04-17 Thread Vincent Legoll
No need to get into the submenu to disable all BCMA-related config entries Signed-off-by: Vincent Legoll --- drivers/bcma/Kconfig | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/drivers/bcma/Kconfig b/drivers/bcma/Kconfig index b5c48a8..54f81c5 100644 --- a/drivers/b