Re: Version number policy!

2013-04-06 Thread Kalle Valo
capabilities and I have never looked back, it's so much easier. You don't need to do any mapping between firmware versions and features, you just deal one feature at a time. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH] ath: changed kmalloc to kmemdup

2013-03-18 Thread Kalle Valo
); + buf = kmemdup(data, size, GFP_KERNEL); if (buf == NULL) return -ENOMEM; - - memcpy(buf, data, size); } Thanks, applied to ath6kl.git. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [PATCH] ath: changed kmalloc to kmemdup

2013-03-10 Thread Kalle Valo
Andrei Epure epure.and...@gmail.com writes: Signed-off-by: Andrei Epure epure.and...@gmail.com Thanks, I'll take this. But please prefix ath6kl patches with ath6kl: in the future. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: [PATCH 12/20] drivers/net/wireless/ath/ath6kl: remove depends on CONFIG_EXPERIMENTAL

2013-01-22 Thread Kalle Valo
this to ath6kl.git (the normal route for ath6kl patches) or what's the plan? -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH] Fix uninitialized variable in ath6kl ath6kl_sdio_enable_scatter

2012-09-21 Thread Kalle Valo
On 09/03/2012 11:15 PM, Andi Kleen wrote: gcc 4.8 warns /backup/lsrc/git/linux-lto-2.6/drivers/net/wireless/ath/ath6kl/sdio.c: In function 'ath6kl_sdio_enable_scatter': /backup/lsrc/git/linux-lto-2.6/drivers/net/wireless/ath/ath6kl/sdio.c:748:16: warning: 'ret' may be used uninitialized in

Re: [PATCH] net: Checking usb_register() return value

2012-08-14 Thread Kalle Valo
On 08/14/2012 11:11 AM, Marina Makienko wrote: ath6kl_usb_init() does not check usb_register() return value. As a result it may incorrectly report success of driver initialization. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Marina Makienko

Re: [PATCH 4/5] drivers/net/wireless/ath/ath6kl/main.c: introduce missing initialization

2012-08-20 Thread Kalle Valo
...@qca.qualcomm.com Signed-off-by: Kalle Valo kv...@qca.qualcomm.com Kalle -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH 4/5] ath6kl/wmi.c: eliminate possible double free

2012-11-16 Thread Kalle Valo
. This is found during code review. kvalo: fix a checkpatch warning in ath6kl_wmi_cmd_send() Signed-off-by: Vasanthakumar Thiagarajan vthia...@qca.qualcomm.com Signed-off-by: Kalle Valo kv...@qca.qualcomm.com https://github.com/kvalo/ath6kl/commit/0616dc1f2bef563d7916c0dcedbb1bff7d9bd80b

Re: [PATCH 8/8] drivers/net/wireless/ath/ath6kl/hif.c: drop if around WARN_ON

2012-11-16 Thread Kalle Valo
On 11/03/2012 10:30 PM, Julia Lawall wrote: From: Julia Lawall julia.law...@lip6.fr Just use WARN_ON rather than an if containing only WARN_ON(1). A simplified version of the semantic patch that makes this transformation is as follows: (http://coccinelle.lip6.fr/) // smpl @@

Re: Linux 3.11-rc2 (acpi backlight, revert)

2013-07-26 Thread Kalle Valo
spot any problems. Tested-by: Kalle Valo kv...@adurom.com -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: ath10k: mac80211 driver for Qualcomm Atheros 802.11ac CQA98xx devices

2013-07-11 Thread Kalle Valo
? In that case, the check is correct, but IMHO it's a bit silly to split the version number in seperate fields. No, the firmware engineers are supposed to reset minor version whenever major changes. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body

Re: [PATCH 3/3] ath10k: ATH10K should depend on HAS_DMA

2013-07-11 Thread Kalle Valo
reference to `dma_unmap_single' drivers/net/wireless/ath/ath10k/core.h:98: undefined reference to `dma_unmap_single' Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org Cc: linux-wirel...@vger.kernel.org Thanks, I'll take this and send forward. -- Kalle Valo -- To unsubscribe from

Re: [Ksummit-2013-discuss] KS Topic request: Handling the Stable kernel, let's dump the cc: stable tag

2013-07-18 Thread Kalle Valo
to update the kernel that often. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] wcn36xx: Fix logging macro with unnecessary semicolon

2013-11-07 Thread Kalle Valo
user's point of view don't change. I don't care if the code is in ath10k.ko or ath.ko, we are talking about ~100 lines of code anyway. One of the nominal benefits of separating the ath_level macros by subsystem was perf/tracing. Nominal? -- Kalle Valo -- To unsubscribe from this list: send

Re: [PATCH] ath6kl: sdio: fix system panic when doing wifi stress test

2013-11-26 Thread Kalle Valo
= n_scat_entry * sizeof(struct hif_scatter_item); scat_req_sz = sizeof(*s_req) + scat_list_sz; if (!virt_scat) -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [PATCH 3/3] ath10k: add firmware files

2014-03-14 Thread Kalle Valo
Luis R. Rodriguez mcg...@do-not-panic.com writes: On Fri, Mar 14, 2014 at 1:45 AM, Kalle Valo kv...@qca.qualcomm.com wrote: + NO LICENSES OR OTHER RIGHTS, +WHETHER EXPRESS, IMPLIED, BASED ON ESTOPPEL OR OTHERWISE, ARE GRANTED +TO ANY PARTY'S PATENTS, PATENT APPLICATIONS, OR PATENTABLE

Re: [BISECTED] ssh - Received disconnect from x.x.x.x: 2: Bad packet length 3149594624

2014-02-24 Thread Kalle Valo
to linux-wireless list and CC people who have worked on it recently. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

Re: [PATCH 3/4] ath6kl: set NET_NAME_USER for P2P ifs

2014-02-27 Thread Kalle Valo
David Herrmann dh.herrm...@gmail.com writes: P2P netdevs and other devices that are created via nl80211 from user-space have a name provided by user-space. Therefore, set NET_NAME_USER so this is correctly shown in sysfs. Cc: Kalle Valo kv...@qca.qualcomm.com Signed-off-by: David Herrmann

Re: [PATCH 3/4] ath6kl: set NET_NAME_USER for P2P ifs

2014-02-27 Thread Kalle Valo
Kalle Valo kv...@qca.qualcomm.com writes: David Herrmann dh.herrm...@gmail.com writes: P2P netdevs and other devices that are created via nl80211 from user-space have a name provided by user-space. Therefore, set NET_NAME_USER so this is correctly shown in sysfs. Cc: Kalle Valo kv

Re: [PATCH] ath6kl: sdio: fix system panic when doing wifi stress test

2014-03-08 Thread Kalle Valo
about that. I did it now: http://lists.infradead.org/pipermail/ath6kl/2014-March/00.html -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-13 Thread Kalle Valo
Bjorn Helgaas bhelg...@google.com writes: On Wed, Feb 12, 2014 at 2:30 PM, Kalle Valo kv...@qca.qualcomm.com wrote: Bjorn Helgaas bhelg...@google.com writes: Well, as this series is small I thought it could quickly go thru your tree. But since ipr had conflicts, there is no point routing all

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-13 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: Signed-off-by: Alexander Gordeev agord...@redhat.com Thanks, all three patches applied to my ath.git tree. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-12 Thread Kalle Valo
thought it would make more sense to include them there. ath10k patches normally go through my ath.git tree to Linville and then to David Miller. To avoid conflicts I would prefer to take ath10k patches to my tree whenever possible. -- Kalle Valo -- To unsubscribe from this list: send the line

Re: [PATCH] mac80211: ath9k: Use RCU protection calling ieee80211_get_tx_rates

2013-06-12 Thread Kalle Valo
Johannes Berg johan...@sipsolutions.net writes: Now the subject should no longer say mac80211: :) It did have a change to mac80211.h as well, but IMHO that should be in a separate patch. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body

Re: [PATCH] ath6kl: Unify sg_sz and buf_sz in ath6kl_sdio_alloc_prep_scat_req()

2013-06-01 Thread Kalle Valo
/ath/ath6kl/sdio.c:338: warning: ‘sg_sz’ may be used uninitialized in this function Unify the sg_sz and buf_sz variables into a single size variable to kill the compiler warning. Signed-off-by: Geert Uytterhoeven ge...@linux-m68k.org Thanks, applied. Sorry for taking so long. -- Kalle Valo

Re: [PATCH 03/16] wl1251: add sysfs interface for bluetooth coexistence mode configuration

2013-10-29 Thread Kalle Valo
. Can't remember the reason anymore. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH 01/16] mac80211: fix TX device statistics for monitor interfaces

2013-10-27 Thread Kalle Valo
Pali Rohár pali.ro...@gmail.com writes: From: David Gnedt david.gn...@davizone.at Count TX packets and bytes also for monitor interfaces. Signed-of-by: David Gnedt david.gn...@davizone.at You should send mac80211 patches separately, not inside a wl1251 patchset. -- Kalle Valo

Re: [PATCH] Add WLI-UC-G300HP's Product ID.

2013-09-03 Thread Kalle Valo
Masami Ichikawa masami...@gmail.com writes: Support Bufallo WLI-UC-G300HP. Signed-off-by: Masami Ichikawa masami...@gmail.com Please add rt2x00: prefix to the commit title. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: ath10k mailing list and new git tree

2013-07-08 Thread Kalle Valo
Sedat Dilek sedat.di...@gmail.com writes: On Mon, Jul 8, 2013 at 4:17 PM, Kalle Valo kv...@qca.qualcomm.com wrote: Hi, we have a new mailing list for ath10k, please use that in the future instead of ath9k-devel: http://lists.infradead.org/mailman/listinfo/ath10k As ath10k is now

Re: [PATCH 12/19] wireless: Change variable type to bool

2013-09-24 Thread Kalle Valo
. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH 04/11] ath: Remove extern from function prototypes

2013-09-26 Thread Kalle Valo
/net/wireless/ath/ath9k/ath9k.h | 2 +- 4 files changed, 10 insertions(+), 12 deletions(-) For the ath10k and ath6kl changes: Acked-by: Kalle Valo kv...@qca.qualcomm.com -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: Linux 3.11-rc2

2013-07-23 Thread Kalle Valo
thinkpad_acpi: Console audio control enabled, mode: monitor (read only) input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5 -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

video: X sets brightness to zero after resume

2014-06-12 Thread Kalle Valo
1:7.6+12ubuntu2 -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [Intel-gfx] video: X sets brightness to zero after resume

2014-06-13 Thread Kalle Valo
in xf86-video-intel, which gets exposed due to the video.use_native_backlight=1 option. This should be fixed in the latest 2.99.912 xf86-video-intel release. Ok, thanks. As Ubuntu 12.04 doesn't have that I'll continue to use video.use_native_backlight=0 until I update my distro. -- Kalle Valo

Re: [PATCH -next 13/26] ath: Use dma_zalloc_coherent

2014-06-16 Thread Kalle Valo
Joe Perches j...@perches.com writes: Use the zeroing function instead of dma_alloc_coherent memset(,0,) Signed-off-by: Joe Perches j...@perches.com For ath10k: Acked-by: Kalle Valo kv...@qca.qualcomm.com -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-04 Thread Kalle Valo
requests it could allocate. And in that case we want to fall back other modes. Am I missing something? -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-05 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: On Tue, Feb 04, 2014 at 08:32:12PM +0200, Kalle Valo wrote: Alexander Gordeev agord...@redhat.com writes: I don't understand how this is superfluous. When I read the documentation for pci_enable_msi_block() it states that if it can't allocate

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-05 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: On Wed, Feb 05, 2014 at 10:21:28AM +0200, Kalle Valo wrote: Is it ok for me to take these patches to my ath.git tree or would you prefer to route them some other way? Yeah, Bjorn has indicated he would pull it to his tree. Ok, I'll drop

Re: [PATCH 6/7] ath10k: Use new interfaces for MSI enablement

2014-01-08 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: This update also fixes a stylistic (naming and messaging only) confusion of MSI-X vs multiple MSIs which are not the same. Signed-off-by: Alexander Gordeev agord...@redhat.com Looks good to me. Acked-by: Kalle Valo kv...@qca.qualcomm.com Do you

Re: [PATCH 6/7] ath10k: Use new interfaces for MSI enablement

2014-01-08 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: On Wed, Jan 08, 2014 at 10:23:18AM +0200, Kalle Valo wrote: Do you want me to take this patch to my ath.git tree or how were you planning to handle it? I see no option other than pushing it thru pci.git tree at this stage. Thanks, I'll

Re: [PATCH v2 02/16] wl1251: add sysfs interface for bluetooth coexistence mode configuration

2013-12-10 Thread Kalle Valo
the years there has been some talk about solving the BT coex properly, but I haven't seen any patches. I guess the proper solution would be that BT subsystem in kernel would notify wireless drivers about BT use? -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [PATCH v2 15/16] wl1251: Add sysfs file address for setting permanent mac address

2013-12-10 Thread Kalle Valo
for devices which do not store mac address in internal wl1251 eeprom. Signed-off-by: Pali Rohár pali.ro...@gmail.com We have ioctl() command for setting the mac address. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH v2 01/16] wl1251: fix scan behaviour while not associated

2013-12-10 Thread Kalle Valo
Pavel Machek pa...@ucw.cz writes: ssids can have \0s in them... and what is worse, they may not be 0 terminated AFAICT. Potential solution is at http://www.spinics.net/lists/linux-wireless/msg98640.html . I just use print_hex_dump_bytes() to print SSIDs. -- Kalle Valo -- To unsubscribe

Re: [PATCH v2 14/16] wl1251: Add sysfs file tx_mgmt_frm_rate for setting rate

2013-12-10 Thread Kalle Valo
on the comment here I'm guessing that I wrote this horrible hack :) I can't recall anymore why it was needed, maybe something for BT coex? But this code should never go upstream. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH 14/30] ath6kl: remove unnecessary break after return

2014-07-21 Thread Kalle Valo
Fabian Frederick f...@skynet.be writes: Signed-off-by: Fabian Frederick f...@skynet.be Acked-by: Kalle Valo kv...@qca.qualcomm.com Who is taking this patch? Please let me know if I should apply it to my tree. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux

Re: [PATCH] checkpatch.pl: Remove --file option

2014-07-21 Thread Kalle Valo
testing individual patches. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] ieee80211: Print human-readable disassoc/deauth reason codes

2014-02-07 Thread Kalle Valo
really see much point in adding this to the kernel? FWIW I find this useful. When I have connection problems I rarely look at wpasupplicant, mostly I'm so lazy that I just check from the kernel log what's happening. Just my 0.02 EUR. -- Kalle Valo -- To unsubscribe from this list: send the line

Re: [PATCH] ieee80211: Print human-readable disassoc/deauth reason codes

2014-02-07 Thread Kalle Valo
the time, for example openwrt is suffering from that. So not really sure what is the best. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [GIT] Networking

2014-07-16 Thread Kalle Valo
instructions (or some sort of patch) how I think it should be resolved. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

Re: [PATCH] drivers: net: wireless: Add include guards

2014-08-24 Thread Kalle Valo
-off-by: Rasmus Villemoes li...@rasmusvillemoes.dk --- drivers/net/wireless/ray_cs.h | 5 +++-- drivers/net/wireless/rayctl.h | 5 +++-- As this a change to ray_cs driver, please use prefix ray_cs: and drop that drivers: net: wireless:. -- Kalle Valo -- To unsubscribe from this list: send

Re: [PATCH 1/1] ath6kl: fix %d confusingly prefixed with 0x in format strings

2014-08-25 Thread Kalle Valo
Hans Wennborg h...@hanshq.net writes: Signed-off-by: Hans Wennborg h...@hanshq.net Thanks, applied. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Re: [PATCH] ath6kl: convert a driver to use module_usb_driver()

2014-08-04 Thread Kalle Valo
. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] drivers/net/wireless: Remove typedef local_info_t

2014-08-13 Thread Kalle Valo
. [...] Signed-off-by: Himangi Saraogi himangi...@gmail.com Acked-by: Julia Lawall julia.law...@lip6.fr --- drivers/net/wireless/atmel_cs.c | 22 +++--- You should prefix the patch with atmel_cs:, not drivers/net/wireless. -- Kalle Valo -- To unsubscribe from this list: send the line

Re: [PATCH 10/19] ath6kl: fix %d confusingly prefixed with 0x in format strings

2014-08-14 Thread Kalle Valo
, address, value); This is ok. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: checkpatch: CHECK: No space is necessary after a cast

2014-09-29 Thread Kalle Valo
Joe Perches j...@perches.com writes: On Mon, 2014-09-29 at 14:49 +0300, Kalle Valo wrote: Hi Joe, I have a problem with checkpatch. On ath10k we have this function: static inline struct ath10k_skb_cb *ATH10K_SKB_CB(struct sk_buff *skb) { BUILD_BUG_ON(sizeof(struct ath10k_skb_cb

Re: [PATCH] ath: change logging functions to return void

2014-09-22 Thread Kalle Valo
/ath/ath6kl/debug.c| 28 drivers/net/wireless/ath/ath6kl/debug.h| 13 ++--- For ath6kl and ath10k: Acked-by: Kalle Valo kv...@qca.qualcomm.com drivers/net/wireless/ath/wil6210/debug.c | 14 -- drivers/net/wireless/ath/wil6210/wil6210.h

Re: FIX ME locking is implemented?

2014-11-22 Thread Kalle Valo
the comment, patches welcome :) -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] ath: change logging functions to return void

2014-09-29 Thread Kalle Valo
...@perches.com Thanks, applied. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] ath: change logging functions to return void

2014-09-23 Thread Kalle Valo
John W. Linville linvi...@tuxdriver.com writes: On Tue, Sep 23, 2014 at 07:20:53AM +0300, Kalle Valo wrote: Joe Perches j...@perches.com writes: drivers/net/wireless/ath/wil6210/debug.c | 14 -- drivers/net/wireless/ath/wil6210/wil6210.h | 7 +-- 7 files changed, 32

Re: [PATCH RFC] ipw2200: select CFG80211_WEXT

2014-12-22 Thread Kalle Valo
that the ipw2200 driver can be built again. I think the last sentence is a bit misleading (this isn't a compilation error, right?) and I would like to clarify it like this: So make IPW2200 select CFG80211_WEXT, so that the ipw2200 driver can be enabled in config again. Does that look ok? -- Kalle Valo

Re: [PATCH RFC] ipw2200: select CFG80211_WEXT

2014-12-23 Thread Kalle Valo
Paul Bolle pebo...@tiscali.nl writes: On Tue, 2014-12-23 at 08:52 +0200, Kalle Valo wrote: Paul Bolle pebo...@tiscali.nl writes: Commit 24a0aa212ee2 (cfg80211: make WEXT compatibility unselectable) made it impossible to depend on CFG80211_WEXT. It does still allow to select that symbol

Re: [PATCH RFC] ipw2200: select CFG80211_WEXT

2014-12-23 Thread Kalle Valo
in a sense? To keep things simple I would prefer to take this through wireless-drivers.git, if it's ok for you. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Re: [PATCH] brcmfmac: Do not crash if platform data is not populated

2014-12-23 Thread Kalle Valo
should drop. And should this patch go to 3.19? -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org

Re: [PATCH] Drivers: bcma: Fix three coding style issues, more than 80 characters per line.

2014-12-23 Thread Kalle Valo
. I'm guessing it was because your time (or timezone) is wrong: https://patchwork.kernel.org/patch/5535751/ -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Re: [PATCH RFC] ipw2200: select CFG80211_WEXT

2014-12-24 Thread Kalle Valo
that the ipw2200 driver can be built again. Signed-off-by: Paul Bolle pebo...@tiscali.nl Thanks, applied to wireless-drivers.git. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [PATCH] brcmfmac: Do not crash if platform data is not populated

2014-12-24 Thread Kalle Valo
support for SDIO devices.) Reported-by: Christophe Prigent christophe.prig...@intel.com Signed-off-by: Mika Westerberg mika.westerb...@linux.intel.com Thanks, applied to wireless-drivers.git. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body

Re: [PATCH] net: wireless: rtlwifi: rtl8192de: fw.c: Remove unused function

2014-12-24 Thread Kalle Valo
and Johannes to manage the wireless patches in patchwork. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH] rsi: fix memory leak in rsi_load_ta_instructions()

2014-12-24 Thread Kalle Valo
-by: Alexey Khoroshilov khoroshi...@ispras.ru Thanks, applied to wireless-drivers-next.git. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] net: wireless: rtlwifi: rtl8192ee: trx.c: Remove unused function

2014-12-24 Thread Kalle Valo
-- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] net: wireless: rtlwifi: rtl8723be: phy.c: Remove unused function

2014-12-24 Thread Kalle Valo
...@spectrumdigital.se Thanks, applied to wireless-drivers-next.git. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

pull-request: wireless-drivers 2014-12-26

2014-12-26 Thread Kalle Valo
device IDs for 3165 Kalle Valo (1): Merge tag 'iwlwifi-fixes-for-kalle-2014-12-18' of git://git.kernel.org/.../iwlwifi/iwlwifi-fixes Liad Kaufman (1): iwlwifi: pcie: limit fw chunk sizes given to fh Mika Westerberg (1): brcmfmac: Do not crash if platform data is not populated Paul

Re: [PATCH] bcma: fix three coding style issues, more than 80 characters per line

2014-12-28 Thread Kalle Valo
-by: Rafał Miłecki zaj...@gmail.com Kalle: will you pick this patch? Most likely yes, but let's wait first for John's opinion about how to handle bcma patches. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH] ath6kl: remove incorrect reset_resume handler

2014-11-03 Thread Kalle Valo
the driver. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov khoroshi...@ispras.ru Thanks, applied. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: [RFC 2/4] Documentation/SubmitChecklist: Remind submitters to check the merge window

2014-12-15 Thread Kalle Valo
/ I'm sure Johannes would be happy to take patches. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH] brcmfmac: avoid duplicated suspend/resume operation

2015-01-22 Thread Kalle Valo
SDIO functions, and PM core will trigger twice suspend/resume operations for one WiFi chip to do the same things. This patch avoid this case. Acked-by: Arend van Spriel ar...@broadcom.com Acked-by: Sergei Shtylyov sergei.shtyl...@cogentembedded.com Acked-by: Kalle Valo kv...@codeaurora.org

Re: [1/1] MAINTAINERS: remove ath5k mailing list

2015-01-22 Thread Kalle Valo
-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [RESEND, 1/2] wlcore: fix copy-paste bug: assign from src struct not dest

2015-01-23 Thread Kalle Valo
Signed-off-by: Giel van Schijndel m...@mortis.eu Reported-at: http://www.viva64.com/en/b/0299/ Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo

Re: rtlwifi/rtl8192de: remove redundant else if check

2015-01-23 Thread Kalle Valo
-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: wireless: p54: add handling of the signal case

2015-01-23 Thread Kalle Valo
-next.git but I removed wireless: from the title. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [v2] atmel: Remove open-coded and wrong strcasecmp

2015-01-23 Thread Kalle Valo
to point to the terminating NUL bytes, so they would wrongly be treated as equal. Signed-off-by: Rasmus Villemoes li...@rasmusvillemoes.dk Thanks, applied to wireless-drivers-next.git. I just remove the useless net: wireless: from the title. People, PLEASE stop using that. Kalle Valo

Re: p54pci: add handling of signal case

2015-01-23 Thread Kalle Valo
-next.git. I remove the useless wireless: from the title. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH] brcmfmac: avoid duplicated suspend/resume operation

2015-02-03 Thread Kalle Valo
in the changes. Patch failed at 0001 brcmfmac: avoid duplicated suspend/resume operation BTW, when you resend a patch please use [PATCH v2] (or v3, v4...) in the Subject field. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: cw1200: use msecs_to_jiffies for conversion

2015-02-05 Thread Kalle Valo
This is only an API consolidation to make things more readable. Instances of HZ / CONST are replaced by appropriate msecs_to_jiffies(). Signed-off-by: Nicholas Mc Guire hof...@osadl.org Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send

Re: [1/3] orinoco: orinoco_plx use msecs_to_jiffies for conversion

2015-02-05 Thread Kalle Valo
for conversion 3427da4597ae orinoco: orinoco_pci use msecs_to_jiffies for conversion c1f1f6663b3c orinoco: orinoco_tmd use msecs_to_jiffies for conversion Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: orinoco: Delete an unnecessary check before the function call kfree

2015-02-05 Thread Kalle Valo
-off-by: Markus Elfring elfr...@users.sourceforge.net Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: hostap: Delete an unnecessary check before the function call kfree

2015-02-05 Thread Kalle Valo
-off-by: Markus Elfring elfr...@users.sourceforge.net Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: brcm80211: Delete unnecessary checks before two function calls

2015-02-05 Thread Kalle Valo
elfr...@users.sourceforge.net Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read

Re: [1/2] cw1200: Delete an unnecessary check before the function call release_firmware

2015-02-05 Thread Kalle Valo
detection Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: ath9k: Delete an unnecessary check before the function callrelay_close

2015-02-05 Thread Kalle Valo
. Signed-off-by: Markus Elfring elfr...@users.sourceforge.net Thanks, applied to wireless-drivers-next.git. Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: [PATCH] ath9k_htc: add adaptive usb flow control to repair soft lockup with monitor mode

2015-02-03 Thread Kalle Valo
with the same name :) -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

pull-request: wireless-drivers 2015-01-20

2015-01-20 Thread Kalle Valo
): iwlwifi: mvm: set the tx cmd tid for BAR frame correctly Felix Fietkau (1): ath9k: fix race condition in irq processing during hardware reset Kalle Valo (2): Merge tag 'iwlwifi-for-kalle-2015-01-13' of https://git.kernel.org/.../iwlwifi/iwlwifi-fixes Merge tag 'iwlwifi

Re: [PATCH] bcma: fix three coding style issues, more than 80 characters per line

2015-01-15 Thread Kalle Valo
version this time :) -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] brcmfmac: avoid duplicated suspend/resume operation

2015-01-15 Thread Kalle Valo
-by: Zhonghui Fuzhonghui...@linux.intel.com This patch needs to be rebased. Kalle, Please drop this one. Ok, dropped. I'll wait for the rebase. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: [PATCH 6/8] adm8211: fix error return code

2015-01-15 Thread Kalle Valo
ret; } | ret = 0 ) ... when != ret = e1 when != ret *if(...) { ... when != ret = e2 when forall return ret; } // /smpl Signed-off-by: Julia Lawall julia.law...@lip6.fr Thanks, applied to wireless-drivers-next.git. -- Kalle Valo -- To unsubscribe from this list: send

Re: [PATCH RESEND 2/2] wlcore: align member-assigns in a structure-copy block

2015-01-15 Thread Kalle Valo
Eliad Peller el...@wizery.com writes: On Fri, Jan 9, 2015 at 7:03 PM, Kalle Valo kv...@codeaurora.org wrote: Giel van Schijndel m...@mortis.eu writes: This highlights the differences (e.g. the bug fixed in the previous commit). Signed-off-by: Giel van Schijndel m...@mortis.eu

Re: [PATCH 1/3] rtlwifi: btcoexist: Remove some unused functions

2015-01-15 Thread Kalle Valo
the patches. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

pull-request: wireless-drivers 2015-02-11

2015-02-11 Thread Kalle Valo
Hi Dave, here's one rtlwifi fix for 3.20. We have had two reports of this issue already, so it would be good to get this to -rc1 or -rc2. I rebased wireless-drivers on top of net-next, so this patch applies to net-next. I hope that's ok. Kalle The following changes since commit

Re: [PATCH v3] brcmfmac: avoid duplicated suspend/resume operation

2015-02-15 Thread Kalle Valo
. In the future I will most likely apply patches also during the merge window, but as I'm still a greenhorn I'll be on the safe and wait for the merge window to end. -- Kalle Valo -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: linux-next: build failure after merge of the wireless-drivers-next tree

2015-01-27 Thread Kalle Valo
/ath9k.o:(.bss+0x1654): first defined here Caused by commit 3a939a671225 (ath9k_htc: Add a module parameter to disable blink). I have reverted that commit for today. Sorry about that, we have a patch pending to fix it: https://patchwork.kernel.org/patch/5699001/ -- Kalle Valo -- To unsubscribe

Re: [RESEND] ssb: Fix Sparse error in main

2015-01-29 Thread Kalle Valo
This change fixes below sparse error: drivers/ssb/main.c:94:16: warning: symbol 'ssb_sdio_func_to_bus' was not declared. Should it be static? Acked-by: Michael Buesch m...@bues.ch Signed-off-by: Pramod Gurav pramod.gu...@smartplayin.com Thanks, applied to wireless-drivers-next.git. Kalle

  1   2   3   4   5   6   7   8   9   10   >