From 98ada4b3f035e11510c4a5bfc10b1c134ffbd2af Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sat, 19 May 2018 23:25:05 -0500 Subject: ARM: legoev3: disable networking This disables networking related items in the config. The EV3 does not have any networking hardware, so this is wasted space. Signed-off-by: David Lechner --- board/lego/ev3/legoev3.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'board/lego/ev3/legoev3.c') diff --git a/board/lego/ev3/legoev3.c b/board/lego/ev3/legoev3.c index 69010055d3..423c2fa44b 100644 --- a/board/lego/ev3/legoev3.c +++ b/board/lego/ev3/legoev3.c @@ -14,8 +14,6 @@ #include #include -#include -#include #include #include #include @@ -162,7 +160,7 @@ int board_init(void) /* setup the SUSPSRC for ARM to control emulation suspend */ writel(readl(&davinci_syscfg_regs->suspsrc) & - ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C | + ~(DAVINCI_SYSCFG_SUSPSRC_I2C | DAVINCI_SYSCFG_SUSPSRC_SPI0 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 | DAVINCI_SYSCFG_SUSPSRC_UART1), &davinci_syscfg_regs->suspsrc); -- cgit