From 461be2f96e4b87e5065208c6659a47dd0ad9e9f8 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Sun, 14 Sep 2014 03:01:49 +0900 Subject: kconfig: remove redundant "string" type in arch and board Kconfigs Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME} are specified in arch/Kconfig. We can delete the ones in arch and board Kconfig files. This commit can be easily reproduced by the following command: find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e ' /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ { N s/\n[[:space:]]*string// } ' Signed-off-by: Masahiro Yamada --- board/prodrive/alpr/Kconfig | 3 --- board/prodrive/p3mx/Kconfig | 3 --- board/prodrive/p3p440/Kconfig | 3 --- 3 files changed, 9 deletions(-) (limited to 'board/prodrive') diff --git a/board/prodrive/alpr/Kconfig b/board/prodrive/alpr/Kconfig index 6e99fc7a68..543b4557ee 100644 --- a/board/prodrive/alpr/Kconfig +++ b/board/prodrive/alpr/Kconfig @@ -1,15 +1,12 @@ if TARGET_ALPR config SYS_BOARD - string default "alpr" config SYS_VENDOR - string default "prodrive" config SYS_CONFIG_NAME - string default "alpr" endif diff --git a/board/prodrive/p3mx/Kconfig b/board/prodrive/p3mx/Kconfig index 89dcba0556..28fb8bb3a0 100644 --- a/board/prodrive/p3mx/Kconfig +++ b/board/prodrive/p3mx/Kconfig @@ -1,15 +1,12 @@ if TARGET_P3MX config SYS_BOARD - string default "p3mx" config SYS_VENDOR - string default "prodrive" config SYS_CONFIG_NAME - string default "p3mx" endif diff --git a/board/prodrive/p3p440/Kconfig b/board/prodrive/p3p440/Kconfig index a0eabe1c8d..cf53aac57b 100644 --- a/board/prodrive/p3p440/Kconfig +++ b/board/prodrive/p3p440/Kconfig @@ -1,15 +1,12 @@ if TARGET_P3P440 config SYS_BOARD - string default "p3p440" config SYS_VENDOR - string default "prodrive" config SYS_CONFIG_NAME - string default "p3p440" endif -- cgit v1.2.1