diff options
| author | Madalin Bucur <[email protected]> | 2020-04-29 08:26:17 +0300 |
|---|---|---|
| committer | Priyanka Jain <[email protected]> | 2020-06-03 12:14:27 +0530 |
| commit | 94472223c69f1d5dacff7ddeace67c05c62146e1 (patch) | |
| tree | 10931c336c67ac4dc020046ccc1c3cdc90bd8724 /drivers | |
| parent | ecd4d99f654f3f7bfb96001891d69c3125e70b69 (diff) | |
drivers: net: e1000: with DM_ETH needs DM_PCI too
Compilation error occur when DM_ETH is enabled without DM_PCI.
Signed-off-by: Madalin Bucur <[email protected]>
Reviewed-by: Priyanka Jain <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 0b08de0ef45..bb23f73fc23 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -162,6 +162,7 @@ config DWC_ETH_QOS config E1000 bool "Intel PRO/1000 Gigabit Ethernet support" + depends on (DM_ETH && DM_PCI) || !DM_ETH help This driver supports Intel(R) PRO/1000 gigabit ethernet family of adapters. For more information on how to identify your adapter, go |
