mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-08 05:05:18 +07:00
![Adrian Bunk](/assets/img/avatar_default.png)
I wanted to remove the #include "hostap_ioctl.c" from hostap.c and build hostap_ioctl.c separately, but this doesn't work since hostap.c has the same name as the module. After renaming hostap.c this will be possible. Signed-off-by: Adrian Bunk <bunk@stusta.de> Acked-by: Jouni Malinen <jkmaline@cc.hut.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
7 lines
181 B
Makefile
7 lines
181 B
Makefile
hostap-y := hostap_main.o
|
|
obj-$(CONFIG_HOSTAP) += hostap.o
|
|
|
|
obj-$(CONFIG_HOSTAP_CS) += hostap_cs.o
|
|
obj-$(CONFIG_HOSTAP_PLX) += hostap_plx.o
|
|
obj-$(CONFIG_HOSTAP_PCI) += hostap_pci.o
|