diff options
Diffstat (limited to 'drivers/serial.c')
| -rw-r--r-- | drivers/serial.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/drivers/serial.c b/drivers/serial.c index 057a1ab01..228781b46 100644 --- a/drivers/serial.c +++ b/drivers/serial.c @@ -30,6 +30,8 @@  #include <ns87308.h>  #endif +DECLARE_GLOBAL_DATA_PTR; +  #if !defined(CONFIG_CONS_INDEX)  #error	"No console index specified."  #elif (CONFIG_CONS_INDEX < 1) || (CONFIG_CONS_INDEX > 4) @@ -77,7 +79,6 @@ static NS16550_t serial_ports[4] = {  static int calc_divisor (NS16550_t port)  { -	DECLARE_GLOBAL_DATA_PTR;  #ifdef CONFIG_OMAP1510  	/* If can't cleanly clock 115200 set div to 1 */  	if ((CFG_NS16550_CLK == 12000000) && (gd->baudrate == 115200)) { |