summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadalin Bucur <madalin.bucur@oss.nxp.com>2020-04-29 12:26:59 +0300
committerPriyanka Jain <priyanka.jain@nxp.com>2020-06-03 12:14:27 +0530
commit3374264df97b23d6023be27f1301421be2e42c13 (patch)
tree541f0151a85dd1f85925caed06b0ec30f0c35d22
parent03fe5d5116f3793f4d92a15e6d90bb96f0ee0aaf (diff)
downloadu-boot-3374264df97b23d6023be27f1301421be2e42c13.tar.gz
drivers: net: qe: deselect QE when DM_ETH is enabled
A compilation error appears when QE is compiled with DM_ETH enabled: drivers/qe/uec.c: In function 'init_phy': drivers/qe/uec.c:425:28: error: dereferencing pointer to incomplete type 'struct eth_device' uec = (uec_private_t *)dev->priv; ^~ drivers/qe/uec.c: In function 'uec_initialize': drivers/qe/uec.c:1357:43: error: invalid application of 'sizeof' to incomplete type 'struct eth_device' dev = (struct eth_device *)malloc(sizeof(struct eth_device)); ^~~~~~ The patch disables CONFIG_QE when CONFIG_DM_ETH is set. Signed-off-by: Madalin Bucur <madalin.bucur@oss.nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
-rw-r--r--drivers/qe/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/qe/Kconfig b/drivers/qe/Kconfig
index 864b36b822..44c9f010bd 100644
--- a/drivers/qe/Kconfig
+++ b/drivers/qe/Kconfig
@@ -3,7 +3,7 @@
#
config QE
bool "Enable support for QUICC Engine"
- depends on PPC
+ depends on PPC && !DM_ETH
default y if ARCH_T1040 || ARCH_T1042 || ARCH_T1024 || ARCH_P1021 \
|| ARCH_P1025
help