diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-08-30 07:39:54 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-09-21 11:07:45 -0400 |
commit | 0722d055ac2236da4e319d22a99c9f7e82dbdd5d (patch) | |
tree | 2adae127a5933c011ccfbd67585417fb73a905ec | |
parent | 07441006b2a1df0478bb7bdafd9dcd578898f2d4 (diff) |
ASoC: tpa6130a2: Remove model_id from platform data
The model_id is no longer needed within the platform_data
for the TPA driver since the model of TPA specified
with the device name (tpa6130a2/tpa6140a2).
Also update rx51 (the only affected user) to use the device name rather
than platform data.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Tested-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | arch/arm/mach-omap2/board-rx51-peripherals.c | 1 | ||||
-rw-r--r-- | include/sound/tpa6130a2-plat.h | 6 | ||||
-rw-r--r-- | sound/soc/codecs/tpa6130a2.c | 5 |
3 files changed, 5 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index 5a886cd2c598..ba1aa07bdb29 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
@@ -900,7 +900,6 @@ static struct twl4030_platform_data rx51_twldata __initdata = { | |||
900 | }; | 900 | }; |
901 | 901 | ||
902 | static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata_or_module = { | 902 | static struct tpa6130a2_platform_data rx51_tpa6130a2_data __initdata_or_module = { |
903 | .id = TPA6130A2, | ||
904 | .power_gpio = 98, | 903 | .power_gpio = 98, |
905 | }; | 904 | }; |
906 | 905 | ||
diff --git a/include/sound/tpa6130a2-plat.h b/include/sound/tpa6130a2-plat.h index 89beccb57edd..4cc1093844c8 100644 --- a/include/sound/tpa6130a2-plat.h +++ b/include/sound/tpa6130a2-plat.h | |||
@@ -23,13 +23,7 @@ | |||
23 | #ifndef TPA6130A2_PLAT_H | 23 | #ifndef TPA6130A2_PLAT_H |
24 | #define TPA6130A2_PLAT_H | 24 | #define TPA6130A2_PLAT_H |
25 | 25 | ||
26 | enum tpa_model { | ||
27 | TPA6130A2, | ||
28 | TPA6140A2, | ||
29 | }; | ||
30 | |||
31 | struct tpa6130a2_platform_data { | 26 | struct tpa6130a2_platform_data { |
32 | enum tpa_model id; | ||
33 | int power_gpio; | 27 | int power_gpio; |
34 | }; | 28 | }; |
35 | 29 | ||
diff --git a/sound/soc/codecs/tpa6130a2.c b/sound/soc/codecs/tpa6130a2.c index a14689be700a..7eeca79d7387 100644 --- a/sound/soc/codecs/tpa6130a2.c +++ b/sound/soc/codecs/tpa6130a2.c | |||
@@ -33,6 +33,11 @@ | |||
33 | 33 | ||
34 | #include "tpa6130a2.h" | 34 | #include "tpa6130a2.h" |
35 | 35 | ||
36 | enum tpa_model { | ||
37 | TPA6130A2, | ||
38 | TPA6140A2, | ||
39 | }; | ||
40 | |||
36 | static struct i2c_client *tpa6130a2_client; | 41 | static struct i2c_client *tpa6130a2_client; |
37 | 42 | ||
38 | /* This struct is used to save the context */ | 43 | /* This struct is used to save the context */ |