diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-12-15 09:57:14 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-16 00:57:07 -0500 |
commit | 598ea8238a32e9de36f73ab33110e37483c2a7f2 (patch) | |
tree | 02bc11fc0331dbf26967e1080c63e4552e11e980 /drivers/net/ethernet/broadcom | |
parent | d8ced82e9e7e2084d1b8c3e07686cb77240e288f (diff) | |
download | blackbird-obmc-linux-598ea8238a32e9de36f73ab33110e37483c2a7f2.tar.gz blackbird-obmc-linux-598ea8238a32e9de36f73ab33110e37483c2a7f2.zip |
net: systemport: always select FIXED_PHY
There is no need to do the following:
select FIXED_PHY if SYSTEMPORT=y, as this implies that we will not be able
to build and/or run the driver correctly when built as a module, which
is no longer an issue since commit 37e9a6904520 ("net: phy: export
fixed_phy_register()")
Fixes: a3862db2d3c4 ("net: systemport: hook SYSTEMPORT driver in the build")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/broadcom')
-rw-r--r-- | drivers/net/ethernet/broadcom/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/Kconfig b/drivers/net/ethernet/broadcom/Kconfig index f4789a059d54..41a3c9804427 100644 --- a/drivers/net/ethernet/broadcom/Kconfig +++ b/drivers/net/ethernet/broadcom/Kconfig @@ -155,7 +155,7 @@ config SYSTEMPORT depends on OF select MII select PHYLIB - select FIXED_PHY if SYSTEMPORT=y + select FIXED_PHY help This driver supports the built-in Ethernet MACs found in the Broadcom BCM7xxx Set Top Box family chipset using an internal |