diff options
author | Adam Ford | 2019-08-13 08:27:28 -0500 |
---|---|---|
committer | Tom Rini | 2019-08-20 11:46:38 -0400 |
commit | 5569304f1d729d3722cd6b2de78465dda2c73658 (patch) | |
tree | b8e6ec7745f58f89eb83d2e31d6a25c9bbda7677 | |
parent | a24b051a14227c5e38b00cf07b076ec8f45b97e1 (diff) |
ARM: da850evm: Remove dead SPI Code
With SPL now supporting DM_SPI, the need for compiler directives
and hard-coded addresses is obsolete. This patch removes some
dead legacy code defining the SPI base address
Signed-off-by: Adam Ford <aford173@gmail.com>
-rw-r--r-- | include/configs/da850evm.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h index 9bd6da015e5..3153ceb2d38 100644 --- a/include/configs/da850evm.h +++ b/include/configs/da850evm.h @@ -114,9 +114,6 @@ #define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID) #define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI1_CLKID) -#ifdef CONFIG_SPL_BUILD -#define CONFIG_SYS_SPI_BASE DAVINCI_SPI1_BASE -#endif #ifdef CONFIG_USE_SPIFLASH #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x8000 |