linux/drivers/staging/wlan-ng
Tom Gundersen c835a67733 net: set name_assign_type in alloc_netdev()
Extend alloc_netdev{,_mq{,s}}() to take name_assign_type as argument, and convert
all users to pass NET_NAME_UNKNOWN.

Coccinelle patch:

@@
expression sizeof_priv, name, setup, txqs, rxqs, count;
@@

(
-alloc_netdev_mqs(sizeof_priv, name, setup, txqs, rxqs)
+alloc_netdev_mqs(sizeof_priv, name, NET_NAME_UNKNOWN, setup, txqs, rxqs)
|
-alloc_netdev_mq(sizeof_priv, name, setup, count)
+alloc_netdev_mq(sizeof_priv, name, NET_NAME_UNKNOWN, setup, count)
|
-alloc_netdev(sizeof_priv, name, setup)
+alloc_netdev(sizeof_priv, name, NET_NAME_UNKNOWN, setup)
)

v9: move comments here from the wrong commit

Signed-off-by: Tom Gundersen <teg@jklm.no>
Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2014-07-15 16:12:48 -07:00
..
cfg80211.c cfg80211: constify more pointers in the cfg80211 API 2014-05-19 17:53:16 +02:00
hfa384x_usb.c drivers/staging: Remove useless return variables 2014-05-26 10:32:15 -07:00
hfa384x.h staging:wlan-ng:Fix sparse warning cast to restricted __le16 2014-03-07 13:48:03 -08:00
Kconfig
Makefile
p80211conv.c staging: wlan-ng: use netdev_() instead of printk() 2014-05-24 02:08:16 +09:00
p80211conv.h
p80211hdr.h
p80211ioctl.h
p80211meta.h
p80211metadef.h
p80211metastruct.h
p80211mgmt.h Staging: wlan-ng: Fix do not add new typedefs in p80211mgmt.h 2014-03-10 23:35:11 -07:00
p80211msg.h
p80211netdev.c net: set name_assign_type in alloc_netdev() 2014-07-15 16:12:48 -07:00
p80211netdev.h Staging: wlan-ng: changing "* dev" to "*dev" 2013-10-17 09:12:15 -07:00
p80211req.c drivers/staging: Remove useless return variables 2014-05-26 10:32:15 -07:00
p80211req.h
p80211types.h
p80211wep.c Staging: wlan-ng: fix printk(KERN_DEBUG in p80211wep.c 2013-10-11 13:26:13 -07:00
prism2fw.c staging: wlan-ng: use netdev_() instead of printk() 2014-05-24 02:08:16 +09:00
prism2mgmt.c staging: wlan-ng: use netdev_() instead of printk() 2014-05-24 02:08:16 +09:00
prism2mgmt.h staging: wlan-ng: fix bad symbol declaration 2014-05-15 14:57:48 -07:00
prism2mib.c staging: wlan-ng: use netdev_() instead of printk() 2014-05-24 02:08:16 +09:00
prism2sta.c staging: wlan-ng: use netdev_() instead of printk() 2014-05-24 02:08:16 +09:00
prism2usb.c staging/wlan-ng: fix small coding style issues 2014-04-25 16:21:15 -07:00
README

TODO:
	- checkpatch.pl cleanups
	- sparse warnings
	- move to use the in-kernel wireless stack

Please send any patches or complaints about this driver to Greg
Kroah-Hartman <greg@kroah.com> and don't bother the upstream wireless
kernel developers about it, they want nothing to do with it.