Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame^] | 1 | # core |
| 2 | ssb-y += main.o scan.o |
| 3 | ssb-$(CONFIG_SSB_EMBEDDED) += embedded.o |
| 4 | ssb-$(CONFIG_SSB_SPROM) += sprom.o |
| 5 | |
| 6 | # host support |
| 7 | ssb-$(CONFIG_SSB_PCIHOST) += pci.o pcihost_wrapper.o |
| 8 | ssb-$(CONFIG_SSB_PCMCIAHOST) += pcmcia.o bridge_pcmcia_80211.o |
| 9 | ssb-$(CONFIG_SSB_SDIOHOST) += sdio.o |
| 10 | ssb-$(CONFIG_SSB_HOST_SOC) += host_soc.o |
| 11 | |
| 12 | # built-in drivers |
| 13 | ssb-y += driver_chipcommon.o |
| 14 | ssb-y += driver_chipcommon_pmu.o |
| 15 | ssb-$(CONFIG_SSB_SFLASH) += driver_chipcommon_sflash.o |
| 16 | ssb-$(CONFIG_SSB_DRIVER_MIPS) += driver_mipscore.o |
| 17 | ssb-$(CONFIG_SSB_DRIVER_EXTIF) += driver_extif.o |
| 18 | ssb-$(CONFIG_SSB_DRIVER_PCICORE) += driver_pcicore.o |
| 19 | ssb-$(CONFIG_SSB_DRIVER_GIGE) += driver_gige.o |
| 20 | ssb-$(CONFIG_SSB_DRIVER_GPIO) += driver_gpio.o |
| 21 | |
| 22 | # b43 pci-ssb-bridge driver |
| 23 | # Not strictly a part of SSB, but kept here for convenience |
| 24 | ssb-$(CONFIG_SSB_B43_PCI_BRIDGE) += b43_pci_bridge.o |
| 25 | |
| 26 | obj-$(CONFIG_SSB) += ssb.o |