diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-17 20:12:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-23 18:33:36 -0400 |
commit | 12ca05a38bd47b207a6e616e80f2ab0453faf527 (patch) | |
tree | f9ead4df64d5dc5de94e8f77f8b6cfbc9d48c128 /include/configs/o2dnt-common.h | |
parent | 83302fb8f7ba3fa5dcd421bba93d0b37cdcb2f60 (diff) |
config: Drop CONFIG_CONSOLE_DEV
This is not really a config. Rename it to avoid confusion.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'include/configs/o2dnt-common.h')
-rw-r--r-- | include/configs/o2dnt-common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/o2dnt-common.h b/include/configs/o2dnt-common.h index 4d79165c48..f9271072e1 100644 --- a/include/configs/o2dnt-common.h +++ b/include/configs/o2dnt-common.h @@ -94,8 +94,8 @@ #undef CONFIG_BOOTARGS -#if !defined(CONFIG_CONSOLE_DEV) -#define CONFIG_CONSOLE_DEV "ttyPSC1" +#if !defined(CONSOLE_DEV) +#define CONSOLE_DEV "ttyPSC1" #endif /* @@ -130,7 +130,7 @@ "addmem=setenv bootargs ${bootargs} ${memlimit}\0" \ "addmisc=sete bootargs ${bootargs} ${miscargs}\0" \ "addtty=sete bootargs ${bootargs} console=" \ - CONFIG_CONSOLE_DEV ",${baudrate}\0" \ + CONSOLE_DEV ",${baudrate}\0" \ "bootfile="CONFIG_BOARD_NAME"/uImage_"CONFIG_BOARD_NAME"_act\0" \ "kernel_addr_r=600000\0" \ "initrd_high=0x03e00000\0" \ |