diff options
author | Paul Walmsley <paul@pwsan.com> | 2011-09-14 13:34:21 -0400 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2011-09-14 19:20:44 -0400 |
commit | 8179488a36985d4929cf89be5d9171145a769511 (patch) | |
tree | 984d54171bc9f2012d24c0e6b823f3b394885bfa /arch/arm/mach-omap2/io.c | |
parent | 129c65ee66a97fbf663f2f5fce26aacdc7348736 (diff) |
OMAP: powerdomain: remove omap_chip bitmasks
At Tony's request, remove the omap_chip bitmasks from the powerdomain
definitions. Instead, initialize powerdomains based on one or more
lists that are applicable to a particular SoC family, variant, and
silicon revision.
Gražvydas Ignotas <notasas@gmail.com> found and reported a bug in a
related patch that also applied to this patch - thanks Gražvydas.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Gražvydas Ignotas <notasas@gmail.com>
Diffstat (limited to 'arch/arm/mach-omap2/io.c')
-rw-r--r-- | arch/arm/mach-omap2/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index d098c870de0b..40b6d47fdbda 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
@@ -341,11 +341,11 @@ void __init omap2_init_common_infrastructure(void) | |||
341 | u8 postsetup_state; | 341 | u8 postsetup_state; |
342 | 342 | ||
343 | if (cpu_is_omap242x()) { | 343 | if (cpu_is_omap242x()) { |
344 | omap2xxx_powerdomains_init(); | 344 | omap242x_powerdomains_init(); |
345 | omap242x_clockdomains_init(); | 345 | omap242x_clockdomains_init(); |
346 | omap2420_hwmod_init(); | 346 | omap2420_hwmod_init(); |
347 | } else if (cpu_is_omap243x()) { | 347 | } else if (cpu_is_omap243x()) { |
348 | omap2xxx_powerdomains_init(); | 348 | omap243x_powerdomains_init(); |
349 | omap243x_clockdomains_init(); | 349 | omap243x_clockdomains_init(); |
350 | omap2430_hwmod_init(); | 350 | omap2430_hwmod_init(); |
351 | } else if (cpu_is_omap34xx()) { | 351 | } else if (cpu_is_omap34xx()) { |