diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2020-08-02 09:49:53 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-08-03 15:49:49 -0700 |
commit | 6d78e473e018e15065d3004ee73ac77acf82baa2 (patch) | |
tree | dfd6e76673506e4ca09c85eb3aa31bf65807559e /drivers/net/phy | |
parent | d0f6ba2ef2c1c95069509e71402e7d6d43452512 (diff) | |
download | linux-riscv-6d78e473e018e15065d3004ee73ac77acf82baa2.tar.gz linux-riscv-6d78e473e018e15065d3004ee73ac77acf82baa2.tar.bz2 linux-riscv-6d78e473e018e15065d3004ee73ac77acf82baa2.zip |
net: phy: mdio-mvusb: select MDIO_DEVRES in Kconfig
PHYLIB is not selected by the mvusb driver but it uses mdio devres
helpers. Explicitly select MDIO_DEVRES in this driver's Kconfig entry.
Reported-by: kernel test robot <lkp@intel.com>
Fixes: 1814cff26739 ("net: phy: add a Kconfig option for mdio_devres")
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index dd20c2c27c2f..726e4b240e7e 100644 --- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig @@ -194,6 +194,7 @@ config MDIO_MSCC_MIIM config MDIO_MVUSB tristate "Marvell USB to MDIO Adapter" depends on USB + select MDIO_DEVRES help A USB to MDIO converter present on development boards for Marvell's Link Street family of Ethernet switches. |