Remove unused 'PL011_BASE' macro
authorSandrine Bailleux <sandrine.bailleux@arm.com>
Tue, 6 May 2014 12:25:37 +0000 (13:25 +0100)
committerSandrine Bailleux <sandrine.bailleux@arm.com>
Thu, 8 May 2014 09:04:43 +0000 (10:04 +0100)
'PL011_BASE' macro is no longer used because the right UART base
address is now directly given to the 'console_init()' function.
This patch removes it.

Change-Id: I94759c99602df4876291a56f9f6a75de337a65ec

include/drivers/arm/pl011.h
plat/fvp/platform.h

index 28aef54a63f1a943e374148604621fbfc63d37c6..12549206d5400602be5c1b41bf4daaaf5ce1f48f 100644 (file)
 #define PL011_UARTCR_LBE          (1 << 7)     /* Loopback enable */
 #define PL011_UARTCR_UARTEN       (1 << 0)     /* UART Enable */
 
-#if !defined(PL011_BASE)
-#error "The PL011_BASE macro must be defined."
-#endif
-
 #if !defined(PL011_BAUDRATE)
 #define PL011_BAUDRATE  115200
 #endif
index 1f4e4324c1357cb4b42d11bfed7185426b529a1c..06bda79a199e9251a7f969ad614f0f9b96ea7b66 100644 (file)
 #define PL011_UART1_BASE               0x1c0a0000
 #define PL011_UART2_BASE               0x1c0b0000
 #define PL011_UART3_BASE               0x1c0c0000
-#define PL011_BASE                     PL011_UART0_BASE
 
 
 /*******************************************************************************