aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc
diff options
context:
space:
mode:
authorChaithrika U S <chaithrika@ti.com>2009-08-25 15:22:21 +0300
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-08-28 10:33:10 +0100
commitf4890b5c04b6301ef9c3c44ecbfe9955efdbaa17 (patch)
tree48d24df5ae1766104924c773d30cbf9e2b91ba31 /sound/soc
parentASoC: Don't reconfigure WM8350 FLL if not needed (diff)
downloadlinux-dev-f4890b5c04b6301ef9c3c44ecbfe9955efdbaa17.tar.xz
linux-dev-f4890b5c04b6301ef9c3c44ecbfe9955efdbaa17.zip
ASoC: davinci: i2c device creation moved into board files
Also, the codec setup data structure has to remain for successful probe. Signed-off-by: Chaithrika U S <chaithrika@ti.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/davinci/davinci-evm.c32
1 files changed, 5 insertions, 27 deletions
diff --git a/sound/soc/davinci/davinci-evm.c b/sound/soc/davinci/davinci-evm.c
index 0190c1bea4e3..67414f659405 100644
--- a/sound/soc/davinci/davinci-evm.c
+++ b/sound/soc/davinci/davinci-evm.c
@@ -206,57 +206,37 @@ static struct snd_soc_card da850_snd_soc_card = {
.num_links = 1,
};
-/* evm audio private data */
-static struct aic3x_setup_data evm_aic3x_setup = {
-};
-
-/* dm6467 evm audio private data */
-static struct aic3x_setup_data dm6467_evm_aic3x_setup = {
- .i2c_bus = 1,
- .i2c_address = 0x18,
-};
-
-static struct aic3x_setup_data da8xx_evm_aic3x_setup = {
- .i2c_bus = 1,
- .i2c_address = 0x18,
-};
+static struct aic3x_setup_data aic3x_setup;
/* evm audio subsystem */
static struct snd_soc_device evm_snd_devdata = {
.card = &snd_soc_card_evm,
.codec_dev = &soc_codec_dev_aic3x,
- .codec_data = &evm_aic3x_setup,
+ .codec_data = &aic3x_setup,
};
/* evm audio subsystem */
static struct snd_soc_device dm6467_evm_snd_devdata = {
.card = &dm6467_snd_soc_card_evm,
.codec_dev = &soc_codec_dev_aic3x,
- .codec_data = &dm6467_evm_aic3x_setup,
+ .codec_data = &aic3x_setup,
};
/* evm audio subsystem */
static struct snd_soc_device da830_evm_snd_devdata = {
.card = &da830_snd_soc_card,
.codec_dev = &soc_codec_dev_aic3x,
- .codec_data = &da8xx_evm_aic3x_setup,
+ .codec_data = &aic3x_setup,
};
static struct snd_soc_device da850_evm_snd_devdata = {
.card = &da850_snd_soc_card,
.codec_dev = &soc_codec_dev_aic3x,
- .codec_data = &da8xx_evm_aic3x_setup,
+ .codec_data = &aic3x_setup,
};
static struct platform_device *evm_snd_device;
-/* temporary i2c device creation until this can be moved into the machine
- * support file.
-*/
-static struct i2c_board_info i2c_device[] = {
- { I2C_BOARD_INFO("tlv320aic33", 0x1b), }
-};
-
static int __init evm_init(void)
{
struct snd_soc_device *evm_snd_dev_data;
@@ -281,8 +261,6 @@ static int __init evm_init(void)
} else
return -EINVAL;
- i2c_register_board_info(1, i2c_device, ARRAY_SIZE(i2c_device));
-
evm_snd_device = platform_device_alloc("soc-audio", index);
if (!evm_snd_device)
return -ENOMEM;