correct PCI IO/Mem resource swapping

SVN-Revision: 30562
This commit is contained in:
Florian Fainelli 2012-02-15 21:13:21 +00:00
parent 3ceebbba14
commit 37f8c19028

View file

@ -126,14 +126,14 @@ static struct pci_ops rt2880_pci_ops = {
.write = rt2880_pci_config_write, .write = rt2880_pci_config_write,
}; };
static struct resource rt2880_pci_io_resource = { static struct resource rt2880_pci_mem_resource = {
.name = "PCI MEM space", .name = "PCI MEM space",
.start = RT2880_PCI_MEM_BASE, .start = RT2880_PCI_MEM_BASE,
.end = RT2880_PCI_MEM_BASE + RT2880_PCI_MEM_SIZE - 1, .end = RT2880_PCI_MEM_BASE + RT2880_PCI_MEM_SIZE - 1,
.flags = IORESOURCE_MEM, .flags = IORESOURCE_MEM,
}; };
static struct resource rt2880_pci_mem_resource = { static struct resource rt2880_pci_io_resource = {
.name = "PCI IO space", .name = "PCI IO space",
.start = RT2880_PCI_IO_BASE, .start = RT2880_PCI_IO_BASE,
.end = RT2880_PCI_IO_BASE + RT2880_PCI_IO_SIZE - 1, .end = RT2880_PCI_IO_BASE + RT2880_PCI_IO_SIZE - 1,
@ -142,8 +142,8 @@ static struct resource rt2880_pci_mem_resource = {
static struct pci_controller rt2880_pci_controller = { static struct pci_controller rt2880_pci_controller = {
.pci_ops = &rt2880_pci_ops, .pci_ops = &rt2880_pci_ops,
.mem_resource = &rt2880_pci_io_resource, .mem_resource = &rt2880_pci_mem_resource,
.io_resource = &rt2880_pci_mem_resource, .io_resource = &rt2880_pci_io_resource,
}; };
static inline u32 rt2880_pci_read_u32(unsigned long reg) static inline u32 rt2880_pci_read_u32(unsigned long reg)