Commit 80649c3b authored by Deepak Saxena's avatar Deepak Saxena

Merge plexity.net:/home/dsaxena/src/linux-2.6-ixp2000

into plexity.net:/home/dsaxena/src/linux-2.6-for-rmk
parents f390bfed ab0a56e5
...@@ -144,22 +144,22 @@ static struct map_desc ixdp2x01_io_desc __initdata = { ...@@ -144,22 +144,22 @@ static struct map_desc ixdp2x01_io_desc __initdata = {
static struct uart_port ixdp2x01_serial_ports[2] = { static struct uart_port ixdp2x01_serial_ports[2] = {
{ {
.membase = (char *)(IXDP2X01_UART1_VIRT_BASE + 3), .membase = (char *)(IXDP2X01_UART1_VIRT_BASE),
.mapbase = IXDP2X01_UART1_PHYS_BASE + 3, .mapbase = (unsigned long)IXDP2X01_UART1_PHYS_BASE,
.irq = IRQ_IXDP2X01_UART1, .irq = IRQ_IXDP2X01_UART1,
.flags = UPF_SKIP_TEST, .flags = UPF_SKIP_TEST,
.iotype = UPIO_MEM, .iotype = UPIO_MEM32,
.regshift = 2, .regshift = 2,
.uartclk = IXDP2X01_UART_CLK, .uartclk = IXDP2X01_UART_CLK,
.line = 1, .line = 1,
.type = PORT_16550A, .type = PORT_16550A,
.fifosize = 16 .fifosize = 16
}, { }, {
.membase = (char *)(IXDP2X01_UART2_VIRT_BASE + 3), .membase = (char *)(IXDP2X01_UART2_VIRT_BASE),
.mapbase = IXDP2X01_UART2_PHYS_BASE + 3, .mapbase = (unsigned long)IXDP2X01_UART2_PHYS_BASE,
.irq = IRQ_IXDP2X01_UART2, .irq = IRQ_IXDP2X01_UART2,
.flags = UPF_SKIP_TEST, .flags = UPF_SKIP_TEST,
.iotype = UPIO_MEM, .iotype = UPIO_MEM32,
.regshift = 2, .regshift = 2,
.uartclk = IXDP2X01_UART_CLK, .uartclk = IXDP2X01_UART_CLK,
.line = 2, .line = 2,
...@@ -282,7 +282,7 @@ static int ixdp2x01_pci_setup(int nr, struct pci_sys_data *sys) ...@@ -282,7 +282,7 @@ static int ixdp2x01_pci_setup(int nr, struct pci_sys_data *sys)
if (machine_is_ixdp2801()) if (machine_is_ixdp2801())
sys->mem_offset -= ((*IXP2000_PCI_ADDR_EXT & 0xE000) << 16); sys->mem_offset -= ((*IXP2000_PCI_ADDR_EXT & 0xE000) << 16);
ixp2000_pci_setup(nr, sys); return ixp2000_pci_setup(nr, sys);
} }
struct hw_pci ixdp2x01_pci __initdata = { struct hw_pci ixdp2x01_pci __initdata = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment