mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-09 09:16:38 +07:00
ea60a6aaf5
Initialise and register a wiphy. Store the orinoco_private structure in the new wiphy, and use the net_device private area to store the wireless_dev. This results in a change to the way we navigate from a net_device to the driver private orinoco_private, which we encapsulate in the inline function ndev_priv. Most of the remaining calls to netdev_priv are thus replaced by ndev_priv. We can immediately rely on cfg80211 to handle SIOCGIWNAME, so orinoco_ioctl_getname is removed. Signed-off-by: David Kilroy <kilroyd@googlemail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
14 lines
479 B
Makefile
14 lines
479 B
Makefile
#
|
|
# Makefile for the orinoco wireless device drivers.
|
|
#
|
|
orinoco-objs := main.o fw.o hw.o mic.o scan.o wext.o hermes_dld.o hermes.o cfg.o
|
|
|
|
obj-$(CONFIG_HERMES) += orinoco.o
|
|
obj-$(CONFIG_PCMCIA_HERMES) += orinoco_cs.o
|
|
obj-$(CONFIG_APPLE_AIRPORT) += airport.o
|
|
obj-$(CONFIG_PLX_HERMES) += orinoco_plx.o
|
|
obj-$(CONFIG_PCI_HERMES) += orinoco_pci.o
|
|
obj-$(CONFIG_TMD_HERMES) += orinoco_tmd.o
|
|
obj-$(CONFIG_NORTEL_HERMES) += orinoco_nortel.o
|
|
obj-$(CONFIG_PCMCIA_SPECTRUM) += spectrum_cs.o
|