[PATCH] net: rtl8169: add depends on PCI

The rtl8169 driver uses calls to dm_pci_bus_to_phys, which are compiled under CONFIG_PCI.
Without CONFIG_PCI, this happens:
drivers/net/rtl8169.o: in function `rtl_recv_common': drivers/net/rtl8169.c:555: undefined reference to `dm_pci_bus_to_phys'
It is only natural that this driver depends on CONFIG_PCI then. The device does not work connected in another way anyway, and the driver does not assume anything else at this moment.
Signed-off-by: Eugen Hristev eugen.hristev@collabora.com --- drivers/net/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 09039a283eb5..39eee98ca79f 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -633,6 +633,7 @@ config RTL8139
config RTL8169 bool "Realtek 8169 series Ethernet controller driver" + depends on PCI help This driver supports Realtek 8169 series gigabit ethernet family of PCI/PCIe chipsets/adapters.

On Wed, May 17, 2023 at 1:41 PM Eugen Hristev eugen.hristev@collabora.com wrote:
The rtl8169 driver uses calls to dm_pci_bus_to_phys, which are compiled under CONFIG_PCI.
Without CONFIG_PCI, this happens:
drivers/net/rtl8169.o: in function `rtl_recv_common': drivers/net/rtl8169.c:555: undefined reference to `dm_pci_bus_to_phys'
It is only natural that this driver depends on CONFIG_PCI then. The device does not work connected in another way anyway, and the driver does not assume anything else at this moment.
Signed-off-by: Eugen Hristev eugen.hristev@collabora.com
drivers/net/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 09039a283eb5..39eee98ca79f 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -633,6 +633,7 @@ config RTL8139
config RTL8169 bool "Realtek 8169 series Ethernet controller driver"
depends on PCI help This driver supports Realtek 8169 series gigabit ethernet family of PCI/PCIe chipsets/adapters.
-- 2.34.1
Reviewed-by: Ramon Fried rfried.dev@gmail.com

On Wed, May 17, 2023 at 01:41:24PM +0300, Eugen Hristev wrote:
The rtl8169 driver uses calls to dm_pci_bus_to_phys, which are compiled under CONFIG_PCI.
Without CONFIG_PCI, this happens:
drivers/net/rtl8169.o: in function `rtl_recv_common': drivers/net/rtl8169.c:555: undefined reference to `dm_pci_bus_to_phys'
It is only natural that this driver depends on CONFIG_PCI then. The device does not work connected in another way anyway, and the driver does not assume anything else at this moment.
Signed-off-by: Eugen Hristev eugen.hristev@collabora.com Reviewed-by: Ramon Fried rfried.dev@gmail.com
Applied to u-boot/master, thanks!
participants (3)
-
Eugen Hristev
-
Ramon Fried
-
Tom Rini