diff options
author | Ryan Mallon <rmallon@gmail.com> | 2012-01-11 11:04:42 +1100 |
---|---|---|
committer | Ryan Mallon <rmallon@gmail.com> | 2012-03-14 11:41:08 +1100 |
commit | f15855bfaad29b2badd4a5c30ad73e0542a19d16 (patch) | |
tree | 3e3b4680725ae0cc5935d9fc031c1b705a6fa6a9 /arch/arm/mach-ep93xx/include/mach | |
parent | 258249ec0eaea479eead856ee49e336415f4b1df (diff) | |
download | linux-stable-f15855bfaad29b2badd4a5c30ad73e0542a19d16.tar.gz linux-stable-f15855bfaad29b2badd4a5c30ad73e0542a19d16.tar.bz2 linux-stable-f15855bfaad29b2badd4a5c30ad73e0542a19d16.zip |
ep93xx: Don't use system controller defines in audio drivers
Both the Snapper CL15 and EDB93xx audio drivers set the same audio
configuration in ep93xx_i2s_acquire. Remove the arguments to
ep93xx_i2s_acquire so that the audio drivers no longer need the
EP93XX_SYSCON defines exported.
Signed-off-by: Ryan Mallon <rmallon@gmail.com>
Cc: Liam Girdwood <lrg@ti.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Reviewed-by: Mika Westerberg <mika.westerberg@iki.fi>
Acked-by: Hartley Sweeten <hsweeten@visionengravers.com>
Diffstat (limited to 'arch/arm/mach-ep93xx/include/mach')
-rw-r--r-- | arch/arm/mach-ep93xx/include/mach/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ep93xx/include/mach/platform.h b/arch/arm/mach-ep93xx/include/mach/platform.h index d4c934931f9d..ad63d4be693f 100644 --- a/arch/arm/mach-ep93xx/include/mach/platform.h +++ b/arch/arm/mach-ep93xx/include/mach/platform.h @@ -59,7 +59,7 @@ void ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data); int ep93xx_keypad_acquire_gpio(struct platform_device *pdev); void ep93xx_keypad_release_gpio(struct platform_device *pdev); void ep93xx_register_i2s(void); -int ep93xx_i2s_acquire(unsigned i2s_pins, unsigned i2s_config); +int ep93xx_i2s_acquire(void); void ep93xx_i2s_release(void); void ep93xx_register_ac97(void); |