Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 157726
b: refs/heads/master
c: f4890b5
h: refs/heads/master
v: v3
  • Loading branch information
Chaithrika U S authored and Mark Brown committed Aug 28, 2009
1 parent b41ec41 commit dc5c27f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 28 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f1e887de2d24d50286709912ddc4a91ead21ff81
refs/heads/master: f4890b5c04b6301ef9c3c44ecbfe9955efdbaa17
32 changes: 5 additions & 27 deletions trunk/sound/soc/davinci/davinci-evm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit dc5c27f

Please sign in to comment.