[ARM] 4513/1: S3C: Rename CONFIG_S3C2410_LOWLEVEL_UART_PORT

Rename CONFIG_S3C2410_LOWLEVEL_UART_PORT to be
CONFIG_S3C_LOWLEVEL_UART_PORT as we move to using
plat-s3c for base of S3C operations.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Ben Dooks and committed by Russell King c7657846 cbc4dbff

+6 -6
+1 -1
arch/arm/Kconfig.debug
··· 100 initialised by the boot-loader before use. 101 102 The uncompressor code port configuration is now handled 103 - by CONFIG_S3C2410_LOWLEVEL_UART_PORT. 104 105 endmenu
··· 100 initialised by the boot-loader before use. 101 102 The uncompressor code port configuration is now handled 103 + by CONFIG_S3C_LOWLEVEL_UART_PORT. 104 105 endmenu
+1 -1
arch/arm/boot/compressed/head.S
··· 55 #elif defined(CONFIG_ARCH_S3C2410) 56 .macro loadsp, rb 57 mov \rb, #0x50000000 58 - add \rb, \rb, #0x4000 * CONFIG_S3C2410_LOWLEVEL_UART_PORT 59 .endm 60 #else 61 .macro loadsp, rb
··· 55 #elif defined(CONFIG_ARCH_S3C2410) 56 .macro loadsp, rb 57 mov \rb, #0x50000000 58 + add \rb, \rb, #0x4000 * CONFIG_S3C_LOWLEVEL_UART_PORT 59 .endm 60 #else 61 .macro loadsp, rb
+1 -1
arch/arm/configs/s3c2410_defconfig
··· 142 # CONFIG_S3C2410_BOOT_ERROR_RESET is not set 143 # CONFIG_S3C2410_PM_DEBUG is not set 144 # CONFIG_S3C2410_PM_CHECK is not set 145 - CONFIG_S3C2410_LOWLEVEL_UART_PORT=0 146 CONFIG_S3C2410_DMA=y 147 # CONFIG_S3C2410_DMA_DEBUG is not set 148 CONFIG_MACH_SMDK=y
··· 142 # CONFIG_S3C2410_BOOT_ERROR_RESET is not set 143 # CONFIG_S3C2410_PM_DEBUG is not set 144 # CONFIG_S3C2410_PM_CHECK is not set 145 + CONFIG_S3C_LOWLEVEL_UART_PORT=0 146 CONFIG_S3C2410_DMA=y 147 # CONFIG_S3C2410_DMA_DEBUG is not set 148 CONFIG_MACH_SMDK=y
+2 -2
arch/arm/plat-s3c/Kconfig
··· 93 94 See <file:Documentation/arm/Samsung-S3C24XX/Suspend.txt> 95 96 - config S3C2410_LOWLEVEL_UART_PORT 97 - int "S3C2410 UART to use for low-level messages" 98 depends on PLAT_S3C 99 default 0 100 help
··· 93 94 See <file:Documentation/arm/Samsung-S3C24XX/Suspend.txt> 95 96 + config S3C_LOWLEVEL_UART_PORT 97 + int "S3C UART to use for low-level messages" 98 depends on PLAT_S3C 99 default 0 100 help
+1 -1
include/asm-arm/arch-s3c2410/uncompress.h
··· 32 /* how many bytes we allow into the FIFO at a time in FIFO mode */ 33 #define FIFO_MAX (14) 34 35 - #define uart_base S3C24XX_PA_UART + (0x4000*CONFIG_S3C2410_LOWLEVEL_UART_PORT) 36 37 static __inline__ void 38 uart_wr(unsigned int reg, unsigned int val)
··· 32 /* how many bytes we allow into the FIFO at a time in FIFO mode */ 33 #define FIFO_MAX (14) 34 35 + #define uart_base S3C24XX_PA_UART + (0x4000*CONFIG_S3C_LOWLEVEL_UART_PORT) 36 37 static __inline__ void 38 uart_wr(unsigned int reg, unsigned int val)