diff options
author | Tom Rini <trini@konsulko.com> | 2021-09-12 16:14:23 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-12 16:14:23 -0400 |
commit | 57410db4cca283a1fb54e90d8b7ed3bc3be07c4c (patch) | |
tree | 936d0f72c775b1e87f0d2b813545ca206a23cf5d | |
parent | 4a7c4008f9e0cc72aa50da43458fd2af3aee2619 (diff) | |
download | u-boot-57410db4cca283a1fb54e90d8b7ed3bc3be07c4c.tar.gz |
omapl138_lcdk: Stop using CONFIG_MACH_OMAPL138_LCDK
We have one places that uses this symbol and CONFIG_TARGET_OMAPL138_LCDK
works equally well, switch to that.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/davinci/da8xxevm/Makefile | 2 | ||||
-rw-r--r-- | include/configs/omapl138_lcdk.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/board/davinci/da8xxevm/Makefile b/board/davinci/da8xxevm/Makefile index 3fac615d7b..8187c8db22 100644 --- a/board/davinci/da8xxevm/Makefile +++ b/board/davinci/da8xxevm/Makefile @@ -7,4 +7,4 @@ obj-$(CONFIG_MACH_DAVINCI_DA830_EVM) += da830evm.o obj-$(CONFIG_MACH_DAVINCI_DA850_EVM) += da850evm.o -obj-$(CONFIG_MACH_OMAPL138_LCDK) += omapl138_lcdk.o +obj-$(CONFIG_TARGET_OMAPL138_LCDK) += omapl138_lcdk.o diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index f60d15b9db..d20c9e238c 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -17,7 +17,6 @@ /* * SoC Configuration */ -#define CONFIG_MACH_OMAPL138_LCDK #define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID) #define CONFIG_SYS_OSCIN_FREQ 24000000 #define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE |