]> git.baikalelectronics.ru Git - kernel.git/commit
ixgbe: fix Kconfig when driver is not a module
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 4 Jan 2019 18:48:02 +0000 (10:48 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 Jan 2019 22:02:16 +0000 (14:02 -0800)
commit0cc878125d93c42c48fa0657f8f22f5f5ed8fe70
tree93ace2f96870ef13f15c89de6f2ee35b67296af8
parent8f78fce59449489be5d3557ca780da28095fa021
ixgbe: fix Kconfig when driver is not a module

The new ability added to the driver to use mii_bus to handle MII related
ioctls is causing compile issues when the driver is compiled into the
kernel (i.e. not a module).

The problem was in selecting MDIO_DEVICE instead of the preferred PHYLIB
Kconfig option.  The reason being that MDIO_DEVICE had a dependency on
PHYLIB and would be compiled as a module when PHYLIB was a module, no
matter whether ixgbe was compiled into the kernel.

CC: Dave Jones <davej@codemonkey.org.uk>
CC: Steve Douthit <stephend@silicom-usa.com>
CC: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Reviewed-by: Stephen Douthit <stephend@silicom-usa.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/intel/Kconfig