diff options
author | Paul Walmsley <paul@pwsan.com> | 2010-12-21 23:05:14 -0500 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2010-12-21 23:05:14 -0500 |
commit | c4d7e58fb52c632d8e33cd23a4917d7a7f8302ac (patch) | |
tree | 20a56db9f93ff411fc439ea1961b1e51f2ecf15b /arch/arm/mach-omap2/pm-debug.c | |
parent | dac9a77120e2724e22696f06f3ecb4838da1e3e4 (diff) |
OMAP2/3: PRM/CM: prefix OMAP2 PRM/CM functions with "omap2_"
Now that OMAP4-specific PRCM functions have been added, distinguish the
existing OMAP2/3-specific PRCM functions by prefixing them with "omap2_".
This patch should not result in any functional change.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Cc: Jarkko Nikula <jhnikula@gmail.com>
Cc: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Tested-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Tested-by: Rajendra Nayak <rnayak@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm-debug.c')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 1f5d68beabf3..1a4efb5e435a 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c | |||
@@ -45,10 +45,10 @@ u32 wakeup_timer_milliseconds; | |||
45 | 45 | ||
46 | #define DUMP_PRM_MOD_REG(mod, reg) \ | 46 | #define DUMP_PRM_MOD_REG(mod, reg) \ |
47 | regs[reg_count].name = #mod "." #reg; \ | 47 | regs[reg_count].name = #mod "." #reg; \ |
48 | regs[reg_count++].val = prm_read_mod_reg(mod, reg) | 48 | regs[reg_count++].val = omap2_prm_read_mod_reg(mod, reg) |
49 | #define DUMP_CM_MOD_REG(mod, reg) \ | 49 | #define DUMP_CM_MOD_REG(mod, reg) \ |
50 | regs[reg_count].name = #mod "." #reg; \ | 50 | regs[reg_count].name = #mod "." #reg; \ |
51 | regs[reg_count++].val = cm_read_mod_reg(mod, reg) | 51 | regs[reg_count++].val = omap2_cm_read_mod_reg(mod, reg) |
52 | #define DUMP_PRM_REG(reg) \ | 52 | #define DUMP_PRM_REG(reg) \ |
53 | regs[reg_count].name = #reg; \ | 53 | regs[reg_count].name = #reg; \ |
54 | regs[reg_count++].val = __raw_readl(reg) | 54 | regs[reg_count++].val = __raw_readl(reg) |
@@ -328,10 +328,10 @@ static void pm_dbg_regset_store(u32 *ptr) | |||
328 | for (j = pm_dbg_reg_modules[i].low; | 328 | for (j = pm_dbg_reg_modules[i].low; |
329 | j <= pm_dbg_reg_modules[i].high; j += 4) { | 329 | j <= pm_dbg_reg_modules[i].high; j += 4) { |
330 | if (pm_dbg_reg_modules[i].type == MOD_CM) | 330 | if (pm_dbg_reg_modules[i].type == MOD_CM) |
331 | val = cm_read_mod_reg( | 331 | val = omap2_cm_read_mod_reg( |
332 | pm_dbg_reg_modules[i].offset, j); | 332 | pm_dbg_reg_modules[i].offset, j); |
333 | else | 333 | else |
334 | val = prm_read_mod_reg( | 334 | val = omap2_prm_read_mod_reg( |
335 | pm_dbg_reg_modules[i].offset, j); | 335 | pm_dbg_reg_modules[i].offset, j); |
336 | *(ptr++) = val; | 336 | *(ptr++) = val; |
337 | } | 337 | } |