aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-omap2/omap_hwmod.c1
-rw-r--r--arch/arm/plat-omap/include/plat/omap_hwmod.h4
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index 9e89a58711b7..c7762ab0dc8c 100644
--- a/arch/arm/mach-omap2/omap_hwmod.c
+++ b/arch/arm/mach-omap2/omap_hwmod.c
@@ -1883,6 +1883,7 @@ int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res)
1883 os = oh->slaves[i]; 1883 os = oh->slaves[i];
1884 1884
1885 for (j = 0; j < os->addr_cnt; j++) { 1885 for (j = 0; j < os->addr_cnt; j++) {
1886 (res + r)->name = (os->addr + j)->name;
1886 (res + r)->start = (os->addr + j)->pa_start; 1887 (res + r)->start = (os->addr + j)->pa_start;
1887 (res + r)->end = (os->addr + j)->pa_end; 1888 (res + r)->end = (os->addr + j)->pa_end;
1888 (res + r)->flags = IORESOURCE_MEM; 1889 (res + r)->flags = IORESOURCE_MEM;
diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/plat-omap/include/plat/omap_hwmod.h
index fedd82971c9e..04b1ea16a678 100644
--- a/arch/arm/plat-omap/include/plat/omap_hwmod.h
+++ b/arch/arm/plat-omap/include/plat/omap_hwmod.h
@@ -178,7 +178,8 @@ struct omap_hwmod_omap2_firewall {
178#define ADDR_TYPE_RT (1 << 1) 178#define ADDR_TYPE_RT (1 << 1)
179 179
180/** 180/**
181 * struct omap_hwmod_addr_space - MPU address space handled by the hwmod 181 * struct omap_hwmod_addr_space - address space handled by the hwmod
182 * @name: name of the address space
182 * @pa_start: starting physical address 183 * @pa_start: starting physical address
183 * @pa_end: ending physical address 184 * @pa_end: ending physical address
184 * @flags: (see omap_hwmod_addr_space.flags macros above) 185 * @flags: (see omap_hwmod_addr_space.flags macros above)
@@ -187,6 +188,7 @@ struct omap_hwmod_omap2_firewall {
187 * structure. GPMC is one example. 188 * structure. GPMC is one example.
188 */ 189 */
189struct omap_hwmod_addr_space { 190struct omap_hwmod_addr_space {
191 const char *name;
190 u32 pa_start; 192 u32 pa_start;
191 u32 pa_end; 193 u32 pa_end;
192 u8 flags; 194 u8 flags;