diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2014-05-06 13:25:37 +0100 |
---|---|---|
committer | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2014-05-08 10:04:43 +0100 |
commit | 31bce47e4e3f9850ab618ce3f2119963eb73f7b3 (patch) | |
tree | c0ff339a647792581fb8881ec1091ab0f4747203 /include/drivers/arm/pl011.h | |
parent | e404d7f44a190b82332bb96daffa0c6239732218 (diff) | |
download | platform_external_arm-trusted-firmware-31bce47e4e3f9850ab618ce3f2119963eb73f7b3.tar.gz platform_external_arm-trusted-firmware-31bce47e4e3f9850ab618ce3f2119963eb73f7b3.tar.bz2 platform_external_arm-trusted-firmware-31bce47e4e3f9850ab618ce3f2119963eb73f7b3.zip |
Remove unused 'PL011_BASE' macro
'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
Diffstat (limited to 'include/drivers/arm/pl011.h')
-rw-r--r-- | include/drivers/arm/pl011.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/drivers/arm/pl011.h b/include/drivers/arm/pl011.h index 28aef54a6..12549206d 100644 --- a/include/drivers/arm/pl011.h +++ b/include/drivers/arm/pl011.h @@ -78,10 +78,6 @@ #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 |