Re: brcmfmac: use const char * for interface name in brcmf_add_if

2016-06-29 Thread Kalle Valo
ded for more advanced > interface management. > > Signed-off-by: Rafał Miłecki Thanks, 1 patch applied to wireless-drivers-next.git: 54264e7ea09a brcmfmac: use const char * for interface name in brcmf_add_if -- Sent by pwcli https://patchwork.kernel.org/patch/9183453/

Re: [PATCH] brcmfmac: use const char * for interface name in brcmf_add_if

2016-06-17 Thread Joe Perches
On Fri, 2016-06-17 at 12:48 +0200, Rafał Miłecki wrote: > This function can work just fine with const pointer, it only calls > alloc_netdev which take const as well. Moreover it makes this function > more flexible as some cfg80211 callback may provide const char * as > well, e.g. add_virtual_intf.

[PATCH] brcmfmac: use const char * for interface name in brcmf_add_if

2016-06-17 Thread Rafał Miłecki
This function can work just fine with const pointer, it only calls alloc_netdev which take const as well. Moreover it makes this function more flexible as some cfg80211 callback may provide const char * as well, e.g. add_virtual_intf. This will be needed for more advanced interface management. Sig