diff options
| -rw-r--r-- | sound/soc/codecs/wm8753.c | 4 | ||||
| -rw-r--r-- | sound/soc/omap/mcpdm.c | 2 | ||||
| -rw-r--r-- | sound/soc/omap/mcpdm.h | 2 | ||||
| -rw-r--r-- | sound/soc/pxa/zylonite.c | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sound/soc/codecs/wm8753.c b/sound/soc/codecs/wm8753.c index ffa2ffe5ec11..aa091a0d8187 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
| @@ -1454,8 +1454,8 @@ static int wm8753_probe(struct snd_soc_codec *codec) | |||
| 1454 | /* set the update bits */ | 1454 | /* set the update bits */ |
| 1455 | snd_soc_update_bits(codec, WM8753_LDAC, 0x0100, 0x0100); | 1455 | snd_soc_update_bits(codec, WM8753_LDAC, 0x0100, 0x0100); |
| 1456 | snd_soc_update_bits(codec, WM8753_RDAC, 0x0100, 0x0100); | 1456 | snd_soc_update_bits(codec, WM8753_RDAC, 0x0100, 0x0100); |
| 1457 | snd_soc_update_bits(codec, WM8753_LDAC, 0x0100, 0x0100); | 1457 | snd_soc_update_bits(codec, WM8753_LADC, 0x0100, 0x0100); |
| 1458 | snd_soc_update_bits(codec, WM8753_RDAC, 0x0100, 0x0100); | 1458 | snd_soc_update_bits(codec, WM8753_RADC, 0x0100, 0x0100); |
| 1459 | snd_soc_update_bits(codec, WM8753_LOUT1V, 0x0100, 0x0100); | 1459 | snd_soc_update_bits(codec, WM8753_LOUT1V, 0x0100, 0x0100); |
| 1460 | snd_soc_update_bits(codec, WM8753_ROUT1V, 0x0100, 0x0100); | 1460 | snd_soc_update_bits(codec, WM8753_ROUT1V, 0x0100, 0x0100); |
| 1461 | snd_soc_update_bits(codec, WM8753_LOUT2V, 0x0100, 0x0100); | 1461 | snd_soc_update_bits(codec, WM8753_LOUT2V, 0x0100, 0x0100); |
diff --git a/sound/soc/omap/mcpdm.c b/sound/soc/omap/mcpdm.c index 928f03707451..50e59194ad81 100644 --- a/sound/soc/omap/mcpdm.c +++ b/sound/soc/omap/mcpdm.c | |||
| @@ -449,7 +449,7 @@ exit: | |||
| 449 | return ret; | 449 | return ret; |
| 450 | } | 450 | } |
| 451 | 451 | ||
| 452 | int __devexit omap_mcpdm_remove(struct platform_device *pdev) | 452 | int omap_mcpdm_remove(struct platform_device *pdev) |
| 453 | { | 453 | { |
| 454 | struct omap_mcpdm *mcpdm_ptr = platform_get_drvdata(pdev); | 454 | struct omap_mcpdm *mcpdm_ptr = platform_get_drvdata(pdev); |
| 455 | 455 | ||
diff --git a/sound/soc/omap/mcpdm.h b/sound/soc/omap/mcpdm.h index df3e16fb51f3..20c20a8649fe 100644 --- a/sound/soc/omap/mcpdm.h +++ b/sound/soc/omap/mcpdm.h | |||
| @@ -150,4 +150,4 @@ extern int omap_mcpdm_request(void); | |||
| 150 | extern void omap_mcpdm_free(void); | 150 | extern void omap_mcpdm_free(void); |
| 151 | extern int omap_mcpdm_set_offset(int offset1, int offset2); | 151 | extern int omap_mcpdm_set_offset(int offset1, int offset2); |
| 152 | int __devinit omap_mcpdm_probe(struct platform_device *pdev); | 152 | int __devinit omap_mcpdm_probe(struct platform_device *pdev); |
| 153 | int __devexit omap_mcpdm_remove(struct platform_device *pdev); | 153 | int omap_mcpdm_remove(struct platform_device *pdev); |
diff --git a/sound/soc/pxa/zylonite.c b/sound/soc/pxa/zylonite.c index b6445757fc54..2b8350b52232 100644 --- a/sound/soc/pxa/zylonite.c +++ b/sound/soc/pxa/zylonite.c | |||
| @@ -196,20 +196,20 @@ static int zylonite_probe(struct snd_soc_card *card) | |||
| 196 | if (clk_pout) { | 196 | if (clk_pout) { |
| 197 | pout = clk_get(NULL, "CLK_POUT"); | 197 | pout = clk_get(NULL, "CLK_POUT"); |
| 198 | if (IS_ERR(pout)) { | 198 | if (IS_ERR(pout)) { |
| 199 | dev_err(&pdev->dev, "Unable to obtain CLK_POUT: %ld\n", | 199 | dev_err(card->dev, "Unable to obtain CLK_POUT: %ld\n", |
| 200 | PTR_ERR(pout)); | 200 | PTR_ERR(pout)); |
| 201 | return PTR_ERR(pout); | 201 | return PTR_ERR(pout); |
| 202 | } | 202 | } |
| 203 | 203 | ||
| 204 | ret = clk_enable(pout); | 204 | ret = clk_enable(pout); |
| 205 | if (ret != 0) { | 205 | if (ret != 0) { |
| 206 | dev_err(&pdev->dev, "Unable to enable CLK_POUT: %d\n", | 206 | dev_err(card->dev, "Unable to enable CLK_POUT: %d\n", |
| 207 | ret); | 207 | ret); |
| 208 | clk_put(pout); | 208 | clk_put(pout); |
| 209 | return ret; | 209 | return ret; |
| 210 | } | 210 | } |
| 211 | 211 | ||
| 212 | dev_dbg(&pdev->dev, "MCLK enabled at %luHz\n", | 212 | dev_dbg(card->dev, "MCLK enabled at %luHz\n", |
| 213 | clk_get_rate(pout)); | 213 | clk_get_rate(pout)); |
| 214 | } | 214 | } |
| 215 | 215 | ||
| @@ -241,7 +241,7 @@ static int zylonite_resume_pre(struct snd_soc_card *card) | |||
| 241 | if (clk_pout) { | 241 | if (clk_pout) { |
| 242 | ret = clk_enable(pout); | 242 | ret = clk_enable(pout); |
| 243 | if (ret != 0) | 243 | if (ret != 0) |
| 244 | dev_err(&pdev->dev, "Unable to enable CLK_POUT: %d\n", | 244 | dev_err(card->dev, "Unable to enable CLK_POUT: %d\n", |
| 245 | ret); | 245 | ret); |
| 246 | } | 246 | } |
| 247 | 247 | ||
