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/plat-omap/mcbsp.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/plat-omap/mcbsp.c')
-rw-r--r-- | arch/arm/plat-omap/mcbsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/plat-omap/mcbsp.c b/arch/arm/plat-omap/mcbsp.c index 95449b90074d..b5a6e178a7f9 100644 --- a/arch/arm/plat-omap/mcbsp.c +++ b/arch/arm/plat-omap/mcbsp.c | |||
@@ -236,9 +236,9 @@ static void omap_st_on(struct omap_mcbsp *mcbsp) | |||
236 | * Sidetone uses McBSP ICLK - which must not idle when sidetones | 236 | * Sidetone uses McBSP ICLK - which must not idle when sidetones |
237 | * are enabled or sidetones start sounding ugly. | 237 | * are enabled or sidetones start sounding ugly. |
238 | */ | 238 | */ |
239 | w = cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE); | 239 | w = omap2_cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE); |
240 | w &= ~(1 << (mcbsp->id - 2)); | 240 | w &= ~(1 << (mcbsp->id - 2)); |
241 | cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE); | 241 | omap2_cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE); |
242 | 242 | ||
243 | /* Enable McBSP Sidetone */ | 243 | /* Enable McBSP Sidetone */ |
244 | w = MCBSP_READ(mcbsp, SSELCR); | 244 | w = MCBSP_READ(mcbsp, SSELCR); |
@@ -265,9 +265,9 @@ static void omap_st_off(struct omap_mcbsp *mcbsp) | |||
265 | w = MCBSP_READ(mcbsp, SSELCR); | 265 | w = MCBSP_READ(mcbsp, SSELCR); |
266 | MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN)); | 266 | MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN)); |
267 | 267 | ||
268 | w = cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE); | 268 | w = omap2_cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE); |
269 | w |= 1 << (mcbsp->id - 2); | 269 | w |= 1 << (mcbsp->id - 2); |
270 | cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE); | 270 | omap2_cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE); |
271 | } | 271 | } |
272 | 272 | ||
273 | static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir) | 273 | static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir) |