summaryrefslogtreecommitdiffstats
path: root/drivers/serial_pl010.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/serial_pl010.c')
-rw-r--r--drivers/serial_pl010.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/serial_pl010.c b/drivers/serial_pl010.c
index 7ff4b85c35..417b6aeda6 100644
--- a/drivers/serial_pl010.c
+++ b/drivers/serial_pl010.c
@@ -38,13 +38,10 @@
#define IO_READ(addr) (*(volatile unsigned int *)(addr))
/* Integrator AP has two UARTs, we use the first one, at 38400-8-N-1 */
-#define NUM_PORTS 2
#define CONSOLE_PORT CONFIG_CONS_INDEX
#define baudRate CONFIG_BAUDRATE
-static volatile unsigned char *const port[NUM_PORTS] = {
- (void *) (CFG_SERIAL0),
- (void *) (CFG_SERIAL1)
-};
+static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
+#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
static void pl010_putc (int portnum, char c);
OpenPOWER on IntegriCloud