diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-10-28 18:50:09 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-10-28 18:50:09 -0400 |
commit | 9dfb7808fb05643b0d06df7411b94d9546696bf1 (patch) | |
tree | aa1a9cc1e79ae66f6cbb0fe39d79a80ca76331e8 /arch/arm/mach-ixp2000/core.c | |
parent | c45154a3b1fecdbb51b5462c9f730b44e62b83a5 (diff) | |
parent | 20731945ae743034353a88c307920d1f16cf8ac8 (diff) |
Merge branch 'master'
Diffstat (limited to 'arch/arm/mach-ixp2000/core.c')
-rw-r--r-- | arch/arm/mach-ixp2000/core.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/arm/mach-ixp2000/core.c b/arch/arm/mach-ixp2000/core.c index f4d7f1f6ef85..01c393c504d0 100644 --- a/arch/arm/mach-ixp2000/core.c +++ b/arch/arm/mach-ixp2000/core.c | |||
@@ -83,42 +83,42 @@ void ixp2000_release_slowport(struct slowport_cfg *old_cfg) | |||
83 | static struct map_desc ixp2000_io_desc[] __initdata = { | 83 | static struct map_desc ixp2000_io_desc[] __initdata = { |
84 | { | 84 | { |
85 | .virtual = IXP2000_CAP_VIRT_BASE, | 85 | .virtual = IXP2000_CAP_VIRT_BASE, |
86 | .physical = IXP2000_CAP_PHYS_BASE, | 86 | .pfn = __phys_to_pfn(IXP2000_CAP_PHYS_BASE), |
87 | .length = IXP2000_CAP_SIZE, | 87 | .length = IXP2000_CAP_SIZE, |
88 | .type = MT_DEVICE | 88 | .type = MT_DEVICE |
89 | }, { | 89 | }, { |
90 | .virtual = IXP2000_INTCTL_VIRT_BASE, | 90 | .virtual = IXP2000_INTCTL_VIRT_BASE, |
91 | .physical = IXP2000_INTCTL_PHYS_BASE, | 91 | .pfn = __phys_to_pfn(IXP2000_INTCTL_PHYS_BASE), |
92 | .length = IXP2000_INTCTL_SIZE, | 92 | .length = IXP2000_INTCTL_SIZE, |
93 | .type = MT_DEVICE | 93 | .type = MT_DEVICE |
94 | }, { | 94 | }, { |
95 | .virtual = IXP2000_PCI_CREG_VIRT_BASE, | 95 | .virtual = IXP2000_PCI_CREG_VIRT_BASE, |
96 | .physical = IXP2000_PCI_CREG_PHYS_BASE, | 96 | .pfn = __phys_to_pfn(IXP2000_PCI_CREG_PHYS_BASE), |
97 | .length = IXP2000_PCI_CREG_SIZE, | 97 | .length = IXP2000_PCI_CREG_SIZE, |
98 | .type = MT_DEVICE | 98 | .type = MT_DEVICE |
99 | }, { | 99 | }, { |
100 | .virtual = IXP2000_PCI_CSR_VIRT_BASE, | 100 | .virtual = IXP2000_PCI_CSR_VIRT_BASE, |
101 | .physical = IXP2000_PCI_CSR_PHYS_BASE, | 101 | .pfn = __phys_to_pfn(IXP2000_PCI_CSR_PHYS_BASE), |
102 | .length = IXP2000_PCI_CSR_SIZE, | 102 | .length = IXP2000_PCI_CSR_SIZE, |
103 | .type = MT_DEVICE | 103 | .type = MT_DEVICE |
104 | }, { | 104 | }, { |
105 | .virtual = IXP2000_MSF_VIRT_BASE, | 105 | .virtual = IXP2000_MSF_VIRT_BASE, |
106 | .physical = IXP2000_MSF_PHYS_BASE, | 106 | .pfn = __phys_to_pfn(IXP2000_MSF_PHYS_BASE), |
107 | .length = IXP2000_MSF_SIZE, | 107 | .length = IXP2000_MSF_SIZE, |
108 | .type = MT_DEVICE | 108 | .type = MT_DEVICE |
109 | }, { | 109 | }, { |
110 | .virtual = IXP2000_PCI_IO_VIRT_BASE, | 110 | .virtual = IXP2000_PCI_IO_VIRT_BASE, |
111 | .physical = IXP2000_PCI_IO_PHYS_BASE, | 111 | .pfn = __phys_to_pfn(IXP2000_PCI_IO_PHYS_BASE), |
112 | .length = IXP2000_PCI_IO_SIZE, | 112 | .length = IXP2000_PCI_IO_SIZE, |
113 | .type = MT_DEVICE | 113 | .type = MT_DEVICE |
114 | }, { | 114 | }, { |
115 | .virtual = IXP2000_PCI_CFG0_VIRT_BASE, | 115 | .virtual = IXP2000_PCI_CFG0_VIRT_BASE, |
116 | .physical = IXP2000_PCI_CFG0_PHYS_BASE, | 116 | .pfn = __phys_to_pfn(IXP2000_PCI_CFG0_PHYS_BASE), |
117 | .length = IXP2000_PCI_CFG0_SIZE, | 117 | .length = IXP2000_PCI_CFG0_SIZE, |
118 | .type = MT_DEVICE | 118 | .type = MT_DEVICE |
119 | }, { | 119 | }, { |
120 | .virtual = IXP2000_PCI_CFG1_VIRT_BASE, | 120 | .virtual = IXP2000_PCI_CFG1_VIRT_BASE, |
121 | .physical = IXP2000_PCI_CFG1_PHYS_BASE, | 121 | .pfn = __phys_to_pfn(IXP2000_PCI_CFG1_PHYS_BASE), |
122 | .length = IXP2000_PCI_CFG1_SIZE, | 122 | .length = IXP2000_PCI_CFG1_SIZE, |
123 | .type = MT_DEVICE | 123 | .type = MT_DEVICE |
124 | } | 124 | } |