Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: systemport: hook SYSTEMPORT driver in the build

Hook the Broadcom SYSTEMPORT driver into the build system under the
SYSTEMPORT Kconfig symbol.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Florian Fainelli and committed by
David S. Miller
a3862db2 fcecaeb0

+12
+11
drivers/net/ethernet/broadcom/Kconfig
··· 150 150 In case of using this driver on BCM4706 it's also requires to enable 151 151 BCMA_DRIVER_GMAC_CMN to make it work. 152 152 153 + config SYSTEMPORT 154 + tristate "Broadcom SYSTEMPORT internal MAC support" 155 + depends on OF 156 + select MII 157 + select PHYLIB 158 + select FIXED_PHY if SYSTEMPORT=y 159 + help 160 + This driver supports the built-in Ethernet MACs found in the 161 + Broadcom BCM7xxx Set Top Box family chipset using an internal 162 + Ethernet switch. 163 + 153 164 endif # NET_VENDOR_BROADCOM
+1
drivers/net/ethernet/broadcom/Makefile
··· 11 11 obj-$(CONFIG_SB1250_MAC) += sb1250-mac.o 12 12 obj-$(CONFIG_TIGON3) += tg3.o 13 13 obj-$(CONFIG_BGMAC) += bgmac.o 14 + obj-$(CONFIG_SYSTEMPORT) += bcmsysport.o