diff options
author | Heiko Schocher <hs@denx.de> | 2019-12-01 11:23:22 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-01-07 10:26:55 +0100 |
commit | 44184c2aa8cc38c4ea79d7bf4e9821514acb8bae (patch) | |
tree | 412339bff1797e8095669c1281dbd0ff5781c1b1 | |
parent | 87b687ad9dde05989c04074b13a04d466a3e94ce (diff) | |
download | u-boot-44184c2aa8cc38c4ea79d7bf4e9821514acb8bae.tar.gz u-boot-44184c2aa8cc38c4ea79d7bf4e9821514acb8bae.tar.bz2 u-boot-44184c2aa8cc38c4ea79d7bf4e9821514acb8bae.zip |
imx6: aristainetos: get rid of CONFIG_BOARDNAME
CONFIG_BOARDNAME is not longer needed, as we use
the model information from DTS.
Signed-off-by: Heiko Schocher <hs@denx.de>
-rw-r--r-- | board/aristainetos/Kconfig | 3 | ||||
-rw-r--r-- | board/aristainetos/aristainetos.c | 6 | ||||
-rw-r--r-- | board/aristainetos/common/Kconfig | 5 |
3 files changed, 0 insertions, 14 deletions
diff --git a/board/aristainetos/Kconfig b/board/aristainetos/Kconfig index 2bb12fce75..6700f517f1 100644 --- a/board/aristainetos/Kconfig +++ b/board/aristainetos/Kconfig @@ -8,7 +8,4 @@ config SYS_BOARD config SYS_BOARD_VERSION default 2 -config BOARDNAME - default "aristainetos2" - endif diff --git a/board/aristainetos/aristainetos.c b/board/aristainetos/aristainetos.c index edaec5ee87..846a99804a 100644 --- a/board/aristainetos/aristainetos.c +++ b/board/aristainetos/aristainetos.c @@ -509,12 +509,6 @@ int board_init(void) return 0; } -int checkboard(void) -{ - printf("Board: %s\n", CONFIG_BOARDNAME); - return 0; -} - int board_fit_config_name_match(const char *name) { if (gd->board_type == BOARD_TYPE_4 && diff --git a/board/aristainetos/common/Kconfig b/board/aristainetos/common/Kconfig index 16c1325889..8f2561415b 100644 --- a/board/aristainetos/common/Kconfig +++ b/board/aristainetos/common/Kconfig @@ -1,8 +1,3 @@ -config BOARDNAME - string "name of the board" - help - set the name of the board. - config SYS_BOARD_VERSION int "select version of aristainetos board" help |