1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 02:48:26 +02:00

[ar7] add UPF_IOREMAP flag to the uart port definition (#6532)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19374 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2010-01-28 21:17:21 +00:00
parent e3d73241af
commit ba6e1fd887

View File

@ -454,6 +454,7 @@ static int __init ar7_register_devices(void)
uart_port[0].mapbase = AR7_REGS_UART0;
uart_port[0].membase = ioremap(uart_port[0].mapbase, 256);
uart_port[0].regshift = 2;
uart_port[0].flags = UPF_IOREMAP;
res = early_serial_setup(&uart_port[0]);
if (res)
return res;
@ -469,6 +470,7 @@ static int __init ar7_register_devices(void)
uart_port[1].mapbase = UR8_REGS_UART1;
uart_port[1].membase = ioremap(uart_port[1].mapbase, 256);
uart_port[1].regshift = 2;
uart_port[1].flags = UPF_IOREMAP;
res = early_serial_setup(&uart_port[1]);
if (res)
return res;