RE: [PATCH 07/11] iwlwifi: dvm: Fix probable mask then right shift defect

2014-10-27 Thread Grumbach, Emmanuel
Precedence of and is not the same and is not left to right. shift has higher precedence and should be done after the mask. Add parentheses around the mask. Signed-off-by: Joe Perches j...@perches.com --- Applied - thanks. -- To unsubscribe from this list: send the line unsubscribe

Re: [PATCH 2/2] staging: rtl8723au:core

2014-10-27 Thread Joe Perches
On Mon, 2014-10-27 at 07:16 +0100, Jes Sorensen wrote: Joe Perches j...@perches.com writes: On Mon, 2014-10-27 at 06:45 +0100, Jes Sorensen wrote: Joe Perches j...@perches.com writes: On Sun, 2014-10-26 at 16:18 +, Paul McQuade wrote: ERROR: spaces required around that ':' (ctx:VxE)

Re: [PATCH 2/2] staging: rtl8723au:core

2014-10-27 Thread Jes Sorensen
Joe Perches j...@perches.com writes: On Mon, 2014-10-27 at 07:16 +0100, Jes Sorensen wrote: Joe Perches j...@perches.com writes: On Mon, 2014-10-27 at 06:45 +0100, Jes Sorensen wrote: Joe Perches j...@perches.com writes: On Sun, 2014-10-26 at 16:18 +, Paul McQuade wrote: ERROR:

[PATCH] staging:rtl8723au: core: Fix error reported by checkpatch.

2014-10-27 Thread Sanjeev Sharma
This is a patch to the rtw_cmd.c file that fixes Error reported by checkpatch. Signed-off-by: Sanjeev Sharma sanjeev_sha...@mentor.com --- drivers/staging/rtl8723au/core/rtw_cmd.c | 83 +++- 1 file changed, 40 insertions(+), 43 deletions(-) diff --git

Re: [PATCH] ath10k: fix pm resume after suspend

2014-10-27 Thread Bartosz Markowski
On 23 October 2014 17:10, Kalle Valo kv...@qca.qualcomm.com wrote: Bartosz Markowski bartosz.markow...@tieto.com writes: Firmware was crashing when we were trying to warm reset it after suspend. This was due to the fact that target registeres can be accessed only if the hardware is awaken.

Darlehen

2014-10-27 Thread SPRING FINANCE LOAN
Sehr geehrter Herr / Frau, SPRING FINANCE ist ein britisches Consulting Group, der internationale Eigen- und Fremdkapital Projektfinanzierung, gewerbliche Immobilienfinanzierung in den globalen Markt. Wir werden durch den Kreditgeber zertifiziert und bieten besicherte Kredite an

[PATCH] net: rfkill: gpio: Add default GPIO driver mappings for ACPI

2014-10-27 Thread Mika Westerberg
The driver uses devm_gpiod_get_index(..., index) so that the index refers directly to the GpioIo resource under the ACPI device. The problem with this is that if the ordering changes we get wrong GPIOs. With ACPI 5.1 _DSD we can now use names instead to reference GPIOs analogous to Device Tree.

[PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Jukka Rissanen
Hi, patch 1 renames HWSIM_CMD_CREATE_RADIO to HWSIM_CMD_NEW_RADIO and HWSIM_CMD_DESTROY_RADIO to HWSIM_CMD_DEL_RADIO. They are more fitting on how other pieces of the wireless system work. A define to old name is provided for backward compatibility. Patches 2 and 3 use the newly named enums and

[PATCH 2/3] mac80211-hwsim: Provide multicast event for HWSIM_CMD_NEW_RADIO

2014-10-27 Thread Jukka Rissanen
When adding new radio via HWSIM_CMD_NEW_RADIO then listeners on the multicast group config are informed. Signed-off-by: Jukka Rissanen jukka.rissa...@linux.intel.com --- drivers/net/wireless/mac80211_hwsim.c | 141 +- 1 file changed, 123 insertions(+), 18

[PATCH 1/3] mac80211-hwsim: Rename CREATE and DESTROY radio to NEW and DEL radio

2014-10-27 Thread Jukka Rissanen
Using the name HWSIM_CMD_NEW_RADIO and HWSIM_CMD_DEL_RADIO is more fitting on how other pieces of the wireless system work. Signed-off-by: Jukka Rissanen jukka.rissa...@linux.intel.com --- drivers/net/wireless/mac80211_hwsim.h | 14 +- 1 file changed, 9 insertions(+), 5 deletions(-)

Re: Questions regarding ath9k and new EN 300 328 regulation

2014-10-27 Thread Zefir Kurtisi
On 10/24/2014 05:23 PM, Adrien Decostre wrote: I am looking for information about the compliancy of the ath9k driver to the EN 300 328 ETSI regulation. Would someone know if ath9k has already been tested for this regulation? Is it needed to enable any specific flag in ath9k to guarantee

[PATCH 3.18] mac80211: flush keys for AP mode on ieee80211_do_stop

2014-10-27 Thread Felix Fietkau
Userspace can add keys to an AP mode interface before start_ap has been called. If there have been no calls to start_ap/stop_ap in the mean time, the keys will still be around when the interface is brought down. Signed-off-by: Felix Fietkau n...@openwrt.org --- net/mac80211/iface.c | 3 --- 1

Re: [PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Johannes Berg
On Mon, 2014-10-27 at 12:44 +0200, Jukka Rissanen wrote: Hi, patch 1 renames HWSIM_CMD_CREATE_RADIO to HWSIM_CMD_NEW_RADIO and HWSIM_CMD_DESTROY_RADIO to HWSIM_CMD_DEL_RADIO. They are more fitting on how other pieces of the wireless system work. A define to old name is provided for backward

Re: [PATCH] net: rfkill: gpio: Add default GPIO driver mappings for ACPI

2014-10-27 Thread Johannes Berg
On Mon, 2014-10-27 at 12:15 +0200, Mika Westerberg wrote: The driver uses devm_gpiod_get_index(..., index) so that the index refers directly to the GpioIo resource under the ACPI device. The problem with this is that if the ordering changes we get wrong GPIOs. With ACPI 5.1 _DSD we can now

Re: [PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Jukka Rissanen
Hi Johannes, On ma, 2014-10-27 at 12:20 +0100, Johannes Berg wrote: On Mon, 2014-10-27 at 12:44 +0200, Jukka Rissanen wrote: Hi, patch 1 renames HWSIM_CMD_CREATE_RADIO to HWSIM_CMD_NEW_RADIO and HWSIM_CMD_DESTROY_RADIO to HWSIM_CMD_DEL_RADIO. They are more fitting on how other pieces

Re: [PATCH v2 01/10] ath9k_hw: make support for PC-OEM cards optional

2014-10-27 Thread Sujith Manoharan
Hi, This series looks good to me... Sujith Felix Fietkau wrote: The initvals use up quite a bit of space, and PC-OEM support is typically not needed on embedded systems Signed-off-by: Felix Fietkau n...@openwrt.org --- drivers/net/wireless/ath/ath9k/Kconfig | 5

Re: [PATCH v2 01/10] ath9k_hw: make support for PC-OEM cards optional

2014-10-27 Thread Felix Fietkau
On 2014-10-27 12:40, Sujith Manoharan wrote: Hi, This series looks good to me... Thanks for the review - Felix -- To unsubscribe from this list: send the line unsubscribe linux-wireless in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Jukka Rissanen
On ma, 2014-10-27 at 12:31 +0100, Johannes Berg wrote: On Mon, 2014-10-27 at 13:29 +0200, Jukka Rissanen wrote: Yes, but from generic nl80211 event you cannot know if event is from hwsim radio or not. With this patch, the listener can know that the radio new/del event is specifically

Re: [ath9k-devel] strange MPDU loss pattern

2014-10-27 Thread Felix Fietkau
Hi Seongho, that paper looks quite interesting. Are you planning to publish code/patches for your implementation as well? It would be nice to have dynamic A-MPDU limiting integrated in minstrel_ht. Thanks, - Felix On 26/10/2014 12:14 AM, Seongho Byeon wrote: Hi, I am Ph.d. student in Seoul

Re: [PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Johannes Berg
On Mon, 2014-10-27 at 13:55 +0200, Jukka Rissanen wrote: That's not particularly hard to figure out, for example by looking at sysfs. Is this really so time-constrained/important/... that you can't do that? It does not seem very practical to dig this information from sysfs as the

[PATCH] wireless-regdb: Add 160 MHz channel bandwidth for China (CN)

2014-10-27 Thread Jouni Malinen
This extends regulatory rules for China to allow 160 MHz VHT channels to be used in 5.15-5.25 GHz, 5.25-5.35 GHz. Since the rules between 5.15-5.25 and 5.25-5.35 GHz ranges are different (e.g., DFS requirement), the AUTO-BW flag needs to be used to allow the maximum channel bandwidth to be

Re: MediaTek WiFi hardware support in upstream kernel

2014-10-27 Thread John W. Linville
On Mon, Oct 27, 2014 at 11:02:00AM +0800, Etna wrote: I am not a developer, but I stumbled upon this just a couple of days ago in the OpenWRT forums: https://forum.openwrt.org/viewtopic.php?id=53215 In short, MediaTek is looking for volunteers to help get their drivers mainlined in the

Re: [PATCH] bcma: fix build when CONFIG_OF_ADDRESS is not set

2014-10-27 Thread John W. Linville
Yes, I have it queued. Things have been delayed due to my recent travels, etc. On Sat, Oct 25, 2014 at 01:36:53PM -0700, Guenter Roeck wrote: On Thu, Oct 09, 2014 at 11:39:41PM +0200, Hauke Mehrtens wrote: Commit 2101e533f41a (bcma: register bcma as device tree driver) introduces a hard

Re: [PATCH] bcma: fix build when CONFIG_OF_ADDRESS is not set

2014-10-27 Thread Guenter Roeck
On Mon, Oct 27, 2014 at 11:15:09AM -0400, John W. Linville wrote: Yes, I have it queued. Things have been delayed due to my recent travels, etc. Thanks! Guenter On Sat, Oct 25, 2014 at 01:36:53PM -0700, Guenter Roeck wrote: On Thu, Oct 09, 2014 at 11:39:41PM +0200, Hauke Mehrtens wrote:

Re: [PATCH] wireless-regdb: add regulatory rule for ETSI members on 60GHz band

2014-10-27 Thread John W. Linville
On Sun, Oct 19, 2014 at 09:49:52AM +0300, Vladimir Kondratiev wrote: On Tuesday, October 14, 2014 02:28:58 PM Xose Vazquez Perez wrote: (57240 - 65880 @ 2160), (40), NO-OUTDOOR should(must) be replaced by: (57000 - 66000 @ 2160), (40) Yes, looks like you are right. I used draft that I

Re: pull-request: mac80211 2014-10-23

2014-10-27 Thread John W. Linville
On Thu, Oct 23, 2014 at 08:35:36PM +0200, Johannes Berg wrote: John, Please pull the below changes for the current 3.18 preparations. More details below. Thanks, johannes --- The following changes since commit 35a9ad8af0bb0fa3525e6d0d20e32551d226f38e: Merge

Re: [PATCH 1/1] wireless-regdb: Update rules for Australia (AU) to align with class licence

2014-10-27 Thread John W. Linville
I'm always a bit cautious about merging regdb patches that loosen the rules. Would anyone with more expertise on such regulations care to comment on this one? On Sun, Oct 12, 2014 at 09:56:51PM +1100, Michael Harris wrote: I am not sure where the existing regdb rules for Australia were derived

Re: pull request: iwlwifi 2014-10-21

2014-10-27 Thread John W. Linville
On Thu, Oct 23, 2014 at 09:24:33PM +0300, Emmanuel Grumbach wrote: On Thu, Oct 23, 2014 at 8:48 PM, John W. Linville linvi...@tuxdriver.com wrote: I do not have the 3.18-rc1 tag, because Dave doesn't have it yet in the net.git tre. Please rebase. Done - new tag:

Re: [PATCH v2 12/13] ath5k: update dependencies

2014-10-27 Thread John W. Linville
On Wed, Oct 22, 2014 at 03:03:50AM +0400, Sergey Ryazanov wrote: - Use config symbol defined in the driver instead of arch specific one for conditional compilation. - Rename the ATHEROS_AR231X config symbol to ATH25. - Fix include (ar231x_platform.h - ath25_platform.h). - Some of AR231x

[PATCH] mac80211-hwsim: add frequency attribute to netlink pkts

2014-10-27 Thread greearb
From: Ben Greear gree...@candelatech.com Add frequency attribute when sending to user-space over netlink socket. The frequency is currently ignored when receiving from user-space. Signed-off-by: Ben Greear gree...@candelatech.com --- drivers/net/wireless/mac80211_hwsim.c | 7 +++

Re: [PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Marcel Holtmann
Hi Luca, That's not particularly hard to figure out, for example by looking at sysfs. Is this really so time-constrained/important/... that you can't do that? It does not seem very practical to dig this information from sysfs as the same information can be easily get via netlink as this

Re: [PATCH 0/3] Add mcast event when hwsim radios are created and removed

2014-10-27 Thread Ben Greear
On 10/27/2014 04:14 PM, Marcel Holtmann wrote: Hi Luca, That's not particularly hard to figure out, for example by looking at sysfs. Is this really so time-constrained/important/... that you can't do that? It does not seem very practical to dig this information from sysfs as the same