Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110967
b: refs/heads/master
c: b7c9d85
h: refs/heads/master
i:
  110965: 25c1bd7
  110963: 01bcdf2
  110959: 584a4fb
v: v3
  • Loading branch information
Mark Brown authored and Jaroslav Kysela committed Sep 4, 2008
1 parent 0620152 commit b92c267
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 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: d2a403553ba7659d85dae2a05b1f3767d2fefcfe
refs/heads/master: b7c9d8520564eca89da8733e5248c7ce8ee8e1b0
6 changes: 3 additions & 3 deletions trunk/sound/soc/codecs/ak4535.c
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ static int ak4535_probe(struct platform_device *pdev)
struct ak4535_setup_data *setup;
struct snd_soc_codec *codec;
struct ak4535_priv *ak4535;
int ret = 0;
int ret;

printk(KERN_INFO "AK4535 Audio Codec %s", AK4535_VERSION);

Expand All @@ -644,14 +644,14 @@ static int ak4535_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&codec->dapm_paths);

ak4535_socdev = socdev;
ret = -ENODEV;

#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
if (setup->i2c_address) {
codec->hw_write = (hw_write_t)i2c_master_send;
codec->hw_read = (hw_read_t)i2c_master_recv;
ret = ak4535_add_i2c_device(pdev, setup);
}
#else
/* Add other interfaces here */
#endif

if (ret != 0) {
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/soc/codecs/uda1380.c
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ static int uda1380_probe(struct platform_device *pdev)
struct snd_soc_device *socdev = platform_get_drvdata(pdev);
struct uda1380_setup_data *setup;
struct snd_soc_codec *codec;
int ret = 0;
int ret;

pr_info("UDA1380 Audio Codec %s", UDA1380_VERSION);

Expand All @@ -803,13 +803,13 @@ static int uda1380_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&codec->dapm_paths);

uda1380_socdev = socdev;
ret = -ENODEV;

#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
if (setup->i2c_address) {
codec->hw_write = (hw_write_t)i2c_master_send;
ret = uda1380_add_i2c_device(pdev, setup);
}
#else
/* Add other interfaces here */
#endif

if (ret != 0)
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/soc/codecs/wm8750.c
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ static int wm8750_probe(struct platform_device *pdev)
struct wm8750_setup_data *setup = socdev->codec_data;
struct snd_soc_codec *codec;
struct wm8750_priv *wm8750;
int ret = 0;
int ret;

pr_info("WM8750 Audio Codec %s", WM8750_VERSION);
codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
Expand All @@ -955,13 +955,13 @@ static int wm8750_probe(struct platform_device *pdev)
wm8750_socdev = socdev;
INIT_DELAYED_WORK(&codec->delayed_work, wm8750_work);

ret = -ENODEV;

#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
if (setup->i2c_address) {
codec->hw_write = (hw_write_t)i2c_master_send;
ret = wm8750_add_i2c_device(pdev, setup);
}
#else
/* Add other interfaces here */
#endif

if (ret != 0) {
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/soc/codecs/wm8990.c
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,7 @@ static int wm8990_probe(struct platform_device *pdev)
struct wm8990_setup_data *setup;
struct snd_soc_codec *codec;
struct wm8990_priv *wm8990;
int ret = 0;
int ret;

pr_info("WM8990 Audio Codec %s\n", WM8990_VERSION);

Expand All @@ -1587,13 +1587,13 @@ static int wm8990_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&codec->dapm_paths);
wm8990_socdev = socdev;

ret = -ENODEV;

#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
if (setup->i2c_address) {
codec->hw_write = (hw_write_t)i2c_master_send;
ret = wm8990_add_i2c_device(pdev, setup);
}
#else
/* Add other interfaces here */
#endif

if (ret != 0) {
Expand Down

0 comments on commit b92c267

Please sign in to comment.