c7084535c9
The bridge code was unnecessary enabled by the b44 driver, but it prevents the bcm43xx driver from being loaded, as the bridge claims the same pci ids. Now we enable the birdge only if the b43{legacy} drivers are selected. Signed-off-by: Alexey Zaytsev <alexey.zaytsev@gmail.com> Acked-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
20 lines
568 B
Makefile
20 lines
568 B
Makefile
# core
|
|
ssb-y += main.o scan.o
|
|
ssb-$(CONFIG_SSB_EMBEDDED) += embedded.o
|
|
|
|
# host support
|
|
ssb-$(CONFIG_SSB_PCIHOST) += pci.o pcihost_wrapper.o
|
|
ssb-$(CONFIG_SSB_PCMCIAHOST) += pcmcia.o
|
|
|
|
# built-in drivers
|
|
ssb-y += driver_chipcommon.o
|
|
ssb-$(CONFIG_SSB_DRIVER_MIPS) += driver_mipscore.o
|
|
ssb-$(CONFIG_SSB_DRIVER_EXTIF) += driver_extif.o
|
|
ssb-$(CONFIG_SSB_DRIVER_PCICORE) += driver_pcicore.o
|
|
|
|
# b43 pci-ssb-bridge driver
|
|
# Not strictly a part of SSB, but kept here for convenience
|
|
ssb-$(CONFIG_SSB_B43_PCI_BRIDGE) += b43_pci_bridge.o
|
|
|
|
obj-$(CONFIG_SSB) += ssb.o
|