Re: [RFC v2 1/4] mac80211: Add TXQ scheduling API

2018-07-20 Thread Rajkumar Manoharan
On 2018-07-19 07:18, Toke Høiland-Jørgensen wrote: Rajkumar Manoharan writes: On 2018-07-13 06:39, Toke Høiland-Jørgensen wrote: Rajkumar Manoharan writes: It is not generally predictable how many times this will loop before exiting... Agree.. It would be better If the driver does not w

Re: [PATCH 4/4] staging: wilc1000: use descriptor-based interface for GPIO

2018-07-20 Thread Linus Walleij
On Fri, Jul 20, 2018 at 2:02 PM Ajay Singh wrote: > Now making use of descriptor-based interface instead of integer-based > interface for IRQ GPIO. > Added device tree binding reference for WILC SDIO and SPI interface > module. Also moved the code to free gpio descriptor in module remove > as the

[PATCH] cfg80211: Do not ignore user regulatory hint

2018-07-20 Thread Amar Singhal
Currently user regulatory hint is ignored if all wiphys in the system are self managed. But the hint is not ignored if there is no wiphy in the system. This affects the global regulatory setting. Global regulatory setting needs to be maintained so that it can be applied to a new wiphy entering the

Re: [PATCH v2 00/12] Add mt76x0 driver

2018-07-20 Thread Sean Wang
On Wed, 2018-07-11 at 10:07 +0200, Lorenzo Bianconi wrote: > > On Tue, 2018-07-10 at 11:52 +0200, Stanislaw Gruszka wrote: > > > On Tue, Jul 10, 2018 at 02:50:30PM +0800, Sean Wang wrote: > > > > > For full support mt7610.bin firmware blob is need, hopefully with > > > > > the permission of Mediat

Re: [PATCH 00/11] Add mt76x0 driver

2018-07-20 Thread Lorenzo Bianconi
> On Sat, Jul 07, 2018 at 10:38:27AM +0200, Hans Ulli Kroll wrote: > > > > My integration efforts can be traced here: > > > > https://github.com/sgruszka/wireless-drivers-next/commits/mt76x0-draft > > > > > > > > > > I just had a brief review of the code and I compiled the driver since at > > > t

[PATCH 2/4] staging: wilc1000: rename variable from 'gpio' to 'gpio_irq'

2018-07-20 Thread Ajay Singh
Rename from 'gpio' to 'gpio_irq', so its inlcude the information about the purpose of GPIO. Signed-off-by: Ajay Singh --- drivers/staging/wilc1000/linux_wlan.c | 17 + drivers/staging/wilc1000/wilc_sdio.c | 2 +- drivers/staging/wilc1000/wilc_spi.c |

[PATCH 4/4] staging: wilc1000: use descriptor-based interface for GPIO

2018-07-20 Thread Ajay Singh
Now making use of descriptor-based interface instead of integer-based interface for IRQ GPIO. Added device tree binding reference for WILC SDIO and SPI interface module. Also moved the code to free gpio descriptor in module remove as the reference was fetched in probe function. Updated the TODO fil

[PATCH 3/4] staging: wilc1000: change compatible string from atmel to microchip

2018-07-20 Thread Ajay Singh
Use 'microchip' in compatible string instead of 'atmel', also replace '_' with '-' before the module. Remove 'wilc1000' prefix from device table name. Signed-off-by: Ajay Singh --- drivers/staging/wilc1000/wilc_sdio.c | 11 +-- drivers/staging/wilc1000/wilc_spi.c | 14 +++--- 2

[PATCH 0/4] staging: wilc1000: make use of descriptor-based interface for GPIO

2018-07-20 Thread Ajay Singh
This patch series contains changes mainly related to make use of descriptor-based interface instead of integer-based interface for GPIO. Modified the compatible string to use 'microchip' instead of 'atmel' prefix. Also added the DT binding reference file. This patch is created on top of [1] patch

[PATCH 1/4] staging: wilc1000: remove gpio parameter from wilc_netdev_init()

2018-07-20 Thread Ajay Singh
Instead of passing the gpio as parameter to wilc_netdev_init() now setting its value after finishing wilc_netdev_init() call. Avoided passing of extra parameter to wilc_netdev_init(). Signed-off-by: Ajay Singh --- drivers/staging/wilc1000/linux_wlan.c | 3 +-- drivers/staging/wilc1000/wi

Re: [PATCH 00/11] Add mt76x0 driver

2018-07-20 Thread Stanislaw Gruszka
On Fri, Jul 20, 2018 at 12:30:32PM +0200, Stanislaw Gruszka wrote: > On Sat, Jul 07, 2018 at 10:38:27AM +0200, Hans Ulli Kroll wrote: > > > > My integration efforts can be traced here: > > > > https://github.com/sgruszka/wireless-drivers-next/commits/mt76x0-draft > > > > > > > > > > I just had a

Re: [PATCH 00/11] Add mt76x0 driver

2018-07-20 Thread Stanislaw Gruszka
On Sat, Jul 07, 2018 at 10:38:27AM +0200, Hans Ulli Kroll wrote: > > > My integration efforts can be traced here: > > > https://github.com/sgruszka/wireless-drivers-next/commits/mt76x0-draft > > > > > > > I just had a brief review of the code and I compiled the driver since at > > the moment I ha