diff options
author | Paul Mackerras <paulus@samba.org> | 2007-05-07 23:37:51 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-07 23:37:51 -0400 |
commit | 02bbc0f09c90cefdb2837605c96a66c5ce4ba2e1 (patch) | |
tree | 04ef573cd4de095c500c9fc3477f4278c0b36300 /sound | |
parent | 7487a2245b8841c77ba9db406cf99a483b9334e9 (diff) | |
parent | 5b94f675f57e4ff16c8fda09088d7480a84dcd91 (diff) |
Merge branch 'linux-2.6'
Diffstat (limited to 'sound')
-rw-r--r-- | sound/arm/pxa2xx-ac97.c | 12 | ||||
-rw-r--r-- | sound/core/init.c | 1 | ||||
-rw-r--r-- | sound/oss/au1550_ac97.c | 1 | ||||
-rw-r--r-- | sound/oss/dmasound/tas_ioctl.h | 1 | ||||
-rw-r--r-- | sound/oss/sh_dac_audio.c | 2 | ||||
-rw-r--r-- | sound/oss/soundcard.c | 1 | ||||
-rw-r--r-- | sound/pci/ca0106/ca0106_mixer.c | 2 | ||||
-rw-r--r-- | sound/pci/ca0106/ca0106_proc.c | 2 | ||||
-rw-r--r-- | sound/pci/cs46xx/dsp_spos.c | 1 | ||||
-rw-r--r-- | sound/pci/cs46xx/dsp_spos_scb_lib.c | 1 | ||||
-rw-r--r-- | sound/pci/hda/hda_generic.c | 1 | ||||
-rw-r--r-- | sound/pci/hda/hda_proc.c | 1 | ||||
-rw-r--r-- | sound/pci/hda/patch_atihdmi.c | 1 | ||||
-rw-r--r-- | sound/pci/hda/patch_si3054.c | 1 | ||||
-rw-r--r-- | sound/pci/hda/patch_via.c | 1 | ||||
-rw-r--r-- | sound/soc/pxa/pxa2xx-ac97.c | 12 | ||||
-rw-r--r-- | sound/soc/pxa/pxa2xx-i2s.c | 4 |
17 files changed, 18 insertions, 27 deletions
diff --git a/sound/arm/pxa2xx-ac97.c b/sound/arm/pxa2xx-ac97.c index 28db4be7a16f..19c65a8d86a7 100644 --- a/sound/arm/pxa2xx-ac97.c +++ b/sound/arm/pxa2xx-ac97.c | |||
@@ -260,7 +260,7 @@ static int pxa2xx_ac97_do_suspend(struct snd_card *card, pm_message_t state) | |||
260 | if (platform_ops && platform_ops->suspend) | 260 | if (platform_ops && platform_ops->suspend) |
261 | platform_ops->suspend(platform_ops->priv); | 261 | platform_ops->suspend(platform_ops->priv); |
262 | GCR |= GCR_ACLINK_OFF; | 262 | GCR |= GCR_ACLINK_OFF; |
263 | pxa_set_cken(CKEN2_AC97, 0); | 263 | pxa_set_cken(CKEN_AC97, 0); |
264 | 264 | ||
265 | return 0; | 265 | return 0; |
266 | } | 266 | } |
@@ -269,7 +269,7 @@ static int pxa2xx_ac97_do_resume(struct snd_card *card) | |||
269 | { | 269 | { |
270 | pxa2xx_audio_ops_t *platform_ops = card->dev->platform_data; | 270 | pxa2xx_audio_ops_t *platform_ops = card->dev->platform_data; |
271 | 271 | ||
272 | pxa_set_cken(CKEN2_AC97, 1); | 272 | pxa_set_cken(CKEN_AC97, 1); |
273 | if (platform_ops && platform_ops->resume) | 273 | if (platform_ops && platform_ops->resume) |
274 | platform_ops->resume(platform_ops->priv); | 274 | platform_ops->resume(platform_ops->priv); |
275 | snd_ac97_resume(pxa2xx_ac97_ac97); | 275 | snd_ac97_resume(pxa2xx_ac97_ac97); |
@@ -337,7 +337,7 @@ static int __devinit pxa2xx_ac97_probe(struct platform_device *dev) | |||
337 | /* Use GPIO 113 as AC97 Reset on Bulverde */ | 337 | /* Use GPIO 113 as AC97 Reset on Bulverde */ |
338 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); | 338 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); |
339 | #endif | 339 | #endif |
340 | pxa_set_cken(CKEN2_AC97, 1); | 340 | pxa_set_cken(CKEN_AC97, 1); |
341 | 341 | ||
342 | ret = snd_ac97_bus(card, 0, &pxa2xx_ac97_ops, NULL, &ac97_bus); | 342 | ret = snd_ac97_bus(card, 0, &pxa2xx_ac97_ops, NULL, &ac97_bus); |
343 | if (ret) | 343 | if (ret) |
@@ -361,10 +361,10 @@ static int __devinit pxa2xx_ac97_probe(struct platform_device *dev) | |||
361 | err: | 361 | err: |
362 | if (card) | 362 | if (card) |
363 | snd_card_free(card); | 363 | snd_card_free(card); |
364 | if (CKEN & CKEN2_AC97) { | 364 | if (CKEN & CKEN_AC97) { |
365 | GCR |= GCR_ACLINK_OFF; | 365 | GCR |= GCR_ACLINK_OFF; |
366 | free_irq(IRQ_AC97, NULL); | 366 | free_irq(IRQ_AC97, NULL); |
367 | pxa_set_cken(CKEN2_AC97, 0); | 367 | pxa_set_cken(CKEN_AC97, 0); |
368 | } | 368 | } |
369 | return ret; | 369 | return ret; |
370 | } | 370 | } |
@@ -378,7 +378,7 @@ static int __devexit pxa2xx_ac97_remove(struct platform_device *dev) | |||
378 | platform_set_drvdata(dev, NULL); | 378 | platform_set_drvdata(dev, NULL); |
379 | GCR |= GCR_ACLINK_OFF; | 379 | GCR |= GCR_ACLINK_OFF; |
380 | free_irq(IRQ_AC97, NULL); | 380 | free_irq(IRQ_AC97, NULL); |
381 | pxa_set_cken(CKEN2_AC97, 0); | 381 | pxa_set_cken(CKEN_AC97, 0); |
382 | } | 382 | } |
383 | 383 | ||
384 | return 0; | 384 | return 0; |
diff --git a/sound/core/init.c b/sound/core/init.c index 4a431e3ea3a2..f2fe35737186 100644 --- a/sound/core/init.c +++ b/sound/core/init.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/slab.h> | 26 | #include <linux/slab.h> |
27 | #include <linux/time.h> | 27 | #include <linux/time.h> |
28 | #include <linux/ctype.h> | 28 | #include <linux/ctype.h> |
29 | #include <linux/pci.h> | ||
30 | #include <linux/pm.h> | 29 | #include <linux/pm.h> |
31 | 30 | ||
32 | #include <sound/core.h> | 31 | #include <sound/core.h> |
diff --git a/sound/oss/au1550_ac97.c b/sound/oss/au1550_ac97.c index a339f0c0d512..23018a7c063a 100644 --- a/sound/oss/au1550_ac97.c +++ b/sound/oss/au1550_ac97.c | |||
@@ -47,7 +47,6 @@ | |||
47 | #include <linux/interrupt.h> | 47 | #include <linux/interrupt.h> |
48 | #include <linux/kernel.h> | 48 | #include <linux/kernel.h> |
49 | #include <linux/poll.h> | 49 | #include <linux/poll.h> |
50 | #include <linux/pci.h> | ||
51 | #include <linux/bitops.h> | 50 | #include <linux/bitops.h> |
52 | #include <linux/spinlock.h> | 51 | #include <linux/spinlock.h> |
53 | #include <linux/smp_lock.h> | 52 | #include <linux/smp_lock.h> |
diff --git a/sound/oss/dmasound/tas_ioctl.h b/sound/oss/dmasound/tas_ioctl.h index dccae3a40e01..9d12b373b4a9 100644 --- a/sound/oss/dmasound/tas_ioctl.h +++ b/sound/oss/dmasound/tas_ioctl.h | |||
@@ -1,7 +1,6 @@ | |||
1 | #ifndef _TAS_IOCTL_H_ | 1 | #ifndef _TAS_IOCTL_H_ |
2 | #define _TAS_IOCTL_H_ | 2 | #define _TAS_IOCTL_H_ |
3 | 3 | ||
4 | #include <linux/i2c.h> | ||
5 | #include <linux/soundcard.h> | 4 | #include <linux/soundcard.h> |
6 | 5 | ||
7 | 6 | ||
diff --git a/sound/oss/sh_dac_audio.c b/sound/oss/sh_dac_audio.c index 7ea9accc2ba4..b493660deb36 100644 --- a/sound/oss/sh_dac_audio.c +++ b/sound/oss/sh_dac_audio.c | |||
@@ -104,7 +104,7 @@ static void dac_audio_set_rate(void) | |||
104 | unsigned long interval; | 104 | unsigned long interval; |
105 | struct clk *clk; | 105 | struct clk *clk; |
106 | 106 | ||
107 | clk = clk_get("module_clk"); | 107 | clk = clk_get(NULL, "module_clk"); |
108 | interval = (clk_get_rate(clk) / 4) / rate; | 108 | interval = (clk_get_rate(clk) / 4) / rate; |
109 | clk_put(clk); | 109 | clk_put(clk); |
110 | ctrl_outl(interval, TMU1_TCOR); | 110 | ctrl_outl(interval, TMU1_TCOR); |
diff --git a/sound/oss/soundcard.c b/sound/oss/soundcard.c index dcd8d6d2f56f..a9c23b2502ad 100644 --- a/sound/oss/soundcard.c +++ b/sound/oss/soundcard.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/smp_lock.h> | 44 | #include <linux/smp_lock.h> |
45 | #include <linux/module.h> | 45 | #include <linux/module.h> |
46 | #include <linux/mm.h> | 46 | #include <linux/mm.h> |
47 | #include <linux/device.h> | ||
47 | 48 | ||
48 | /* | 49 | /* |
49 | * This ought to be moved into include/asm/dma.h | 50 | * This ought to be moved into include/asm/dma.h |
diff --git a/sound/pci/ca0106/ca0106_mixer.c b/sound/pci/ca0106/ca0106_mixer.c index b913a1fb8c21..9c3a9c8d1dc2 100644 --- a/sound/pci/ca0106/ca0106_mixer.c +++ b/sound/pci/ca0106/ca0106_mixer.c | |||
@@ -62,7 +62,6 @@ | |||
62 | #include <linux/delay.h> | 62 | #include <linux/delay.h> |
63 | #include <linux/init.h> | 63 | #include <linux/init.h> |
64 | #include <linux/interrupt.h> | 64 | #include <linux/interrupt.h> |
65 | #include <linux/pci.h> | ||
66 | #include <linux/slab.h> | 65 | #include <linux/slab.h> |
67 | #include <linux/moduleparam.h> | 66 | #include <linux/moduleparam.h> |
68 | #include <sound/core.h> | 67 | #include <sound/core.h> |
@@ -71,6 +70,7 @@ | |||
71 | #include <sound/ac97_codec.h> | 70 | #include <sound/ac97_codec.h> |
72 | #include <sound/info.h> | 71 | #include <sound/info.h> |
73 | #include <sound/tlv.h> | 72 | #include <sound/tlv.h> |
73 | #include <asm/io.h> | ||
74 | 74 | ||
75 | #include "ca0106.h" | 75 | #include "ca0106.h" |
76 | 76 | ||
diff --git a/sound/pci/ca0106/ca0106_proc.c b/sound/pci/ca0106/ca0106_proc.c index 75ca421eb3a1..ae80f51d8c4f 100644 --- a/sound/pci/ca0106/ca0106_proc.c +++ b/sound/pci/ca0106/ca0106_proc.c | |||
@@ -64,7 +64,6 @@ | |||
64 | #include <linux/delay.h> | 64 | #include <linux/delay.h> |
65 | #include <linux/init.h> | 65 | #include <linux/init.h> |
66 | #include <linux/interrupt.h> | 66 | #include <linux/interrupt.h> |
67 | #include <linux/pci.h> | ||
68 | #include <linux/slab.h> | 67 | #include <linux/slab.h> |
69 | #include <linux/moduleparam.h> | 68 | #include <linux/moduleparam.h> |
70 | #include <sound/core.h> | 69 | #include <sound/core.h> |
@@ -73,6 +72,7 @@ | |||
73 | #include <sound/ac97_codec.h> | 72 | #include <sound/ac97_codec.h> |
74 | #include <sound/info.h> | 73 | #include <sound/info.h> |
75 | #include <sound/asoundef.h> | 74 | #include <sound/asoundef.h> |
75 | #include <asm/io.h> | ||
76 | 76 | ||
77 | #include "ca0106.h" | 77 | #include "ca0106.h" |
78 | 78 | ||
diff --git a/sound/pci/cs46xx/dsp_spos.c b/sound/pci/cs46xx/dsp_spos.c index 89c402770a1d..336e77e2600c 100644 --- a/sound/pci/cs46xx/dsp_spos.c +++ b/sound/pci/cs46xx/dsp_spos.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <sound/driver.h> | 23 | #include <sound/driver.h> |
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
26 | #include <linux/pci.h> | ||
27 | #include <linux/pm.h> | 26 | #include <linux/pm.h> |
28 | #include <linux/init.h> | 27 | #include <linux/init.h> |
29 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
diff --git a/sound/pci/cs46xx/dsp_spos_scb_lib.c b/sound/pci/cs46xx/dsp_spos_scb_lib.c index 343f51d5311b..57e357de1500 100644 --- a/sound/pci/cs46xx/dsp_spos_scb_lib.c +++ b/sound/pci/cs46xx/dsp_spos_scb_lib.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <sound/driver.h> | 24 | #include <sound/driver.h> |
25 | #include <asm/io.h> | 25 | #include <asm/io.h> |
26 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
27 | #include <linux/pci.h> | ||
28 | #include <linux/pm.h> | 27 | #include <linux/pm.h> |
29 | #include <linux/init.h> | 28 | #include <linux/init.h> |
30 | #include <linux/slab.h> | 29 | #include <linux/slab.h> |
diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c index 1589d2f2917f..1e5ff0cd3709 100644 --- a/sound/pci/hda/hda_generic.c +++ b/sound/pci/hda/hda_generic.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <sound/driver.h> | 23 | #include <sound/driver.h> |
24 | #include <linux/init.h> | 24 | #include <linux/init.h> |
25 | #include <linux/slab.h> | 25 | #include <linux/slab.h> |
26 | #include <linux/pci.h> | ||
27 | #include <sound/core.h> | 26 | #include <sound/core.h> |
28 | #include "hda_codec.h" | 27 | #include "hda_codec.h" |
29 | #include "hda_local.h" | 28 | #include "hda_local.h" |
diff --git a/sound/pci/hda/hda_proc.c b/sound/pci/hda/hda_proc.c index 17df4d0fe135..e313e685f161 100644 --- a/sound/pci/hda/hda_proc.c +++ b/sound/pci/hda/hda_proc.c | |||
@@ -23,7 +23,6 @@ | |||
23 | 23 | ||
24 | #include <sound/driver.h> | 24 | #include <sound/driver.h> |
25 | #include <linux/init.h> | 25 | #include <linux/init.h> |
26 | #include <linux/pci.h> | ||
27 | #include <sound/core.h> | 26 | #include <sound/core.h> |
28 | #include "hda_codec.h" | 27 | #include "hda_codec.h" |
29 | #include "hda_local.h" | 28 | #include "hda_local.h" |
diff --git a/sound/pci/hda/patch_atihdmi.c b/sound/pci/hda/patch_atihdmi.c index 7333f275decd..831469d3a923 100644 --- a/sound/pci/hda/patch_atihdmi.c +++ b/sound/pci/hda/patch_atihdmi.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <linux/init.h> | 25 | #include <linux/init.h> |
26 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
27 | #include <linux/slab.h> | 27 | #include <linux/slab.h> |
28 | #include <linux/pci.h> | ||
29 | #include <sound/core.h> | 28 | #include <sound/core.h> |
30 | #include "hda_codec.h" | 29 | #include "hda_codec.h" |
31 | #include "hda_local.h" | 30 | #include "hda_local.h" |
diff --git a/sound/pci/hda/patch_si3054.c b/sound/pci/hda/patch_si3054.c index ed5e45e35963..6fcda9bcf0cf 100644 --- a/sound/pci/hda/patch_si3054.c +++ b/sound/pci/hda/patch_si3054.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/init.h> | 26 | #include <linux/init.h> |
27 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
29 | #include <linux/pci.h> | ||
30 | #include <sound/core.h> | 29 | #include <sound/core.h> |
31 | #include "hda_codec.h" | 30 | #include "hda_codec.h" |
32 | #include "hda_local.h" | 31 | #include "hda_local.h" |
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c index 4c839b031729..2b11ac8689b9 100644 --- a/sound/pci/hda/patch_via.c +++ b/sound/pci/hda/patch_via.c | |||
@@ -35,7 +35,6 @@ | |||
35 | #include <linux/init.h> | 35 | #include <linux/init.h> |
36 | #include <linux/delay.h> | 36 | #include <linux/delay.h> |
37 | #include <linux/slab.h> | 37 | #include <linux/slab.h> |
38 | #include <linux/pci.h> | ||
39 | #include <sound/core.h> | 38 | #include <sound/core.h> |
40 | #include "hda_codec.h" | 39 | #include "hda_codec.h" |
41 | #include "hda_local.h" | 40 | #include "hda_local.h" |
diff --git a/sound/soc/pxa/pxa2xx-ac97.c b/sound/soc/pxa/pxa2xx-ac97.c index 1bbbeff84ef0..b222755763e7 100644 --- a/sound/soc/pxa/pxa2xx-ac97.c +++ b/sound/soc/pxa/pxa2xx-ac97.c | |||
@@ -256,7 +256,7 @@ static int pxa2xx_ac97_suspend(struct platform_device *pdev, | |||
256 | struct snd_soc_cpu_dai *dai) | 256 | struct snd_soc_cpu_dai *dai) |
257 | { | 257 | { |
258 | GCR |= GCR_ACLINK_OFF; | 258 | GCR |= GCR_ACLINK_OFF; |
259 | pxa_set_cken(CKEN2_AC97, 0); | 259 | pxa_set_cken(CKEN_AC97, 0); |
260 | return 0; | 260 | return 0; |
261 | } | 261 | } |
262 | 262 | ||
@@ -271,7 +271,7 @@ static int pxa2xx_ac97_resume(struct platform_device *pdev, | |||
271 | /* Use GPIO 113 as AC97 Reset on Bulverde */ | 271 | /* Use GPIO 113 as AC97 Reset on Bulverde */ |
272 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); | 272 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); |
273 | #endif | 273 | #endif |
274 | pxa_set_cken(CKEN2_AC97, 1); | 274 | pxa_set_cken(CKEN_AC97, 1); |
275 | return 0; | 275 | return 0; |
276 | } | 276 | } |
277 | 277 | ||
@@ -296,14 +296,14 @@ static int pxa2xx_ac97_probe(struct platform_device *pdev) | |||
296 | /* Use GPIO 113 as AC97 Reset on Bulverde */ | 296 | /* Use GPIO 113 as AC97 Reset on Bulverde */ |
297 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); | 297 | pxa_gpio_mode(113 | GPIO_ALT_FN_2_OUT); |
298 | #endif | 298 | #endif |
299 | pxa_set_cken(CKEN2_AC97, 1); | 299 | pxa_set_cken(CKEN_AC97, 1); |
300 | return 0; | 300 | return 0; |
301 | 301 | ||
302 | err: | 302 | err: |
303 | if (CKEN & CKEN2_AC97) { | 303 | if (CKEN & CKEN_AC97) { |
304 | GCR |= GCR_ACLINK_OFF; | 304 | GCR |= GCR_ACLINK_OFF; |
305 | free_irq(IRQ_AC97, NULL); | 305 | free_irq(IRQ_AC97, NULL); |
306 | pxa_set_cken(CKEN2_AC97, 0); | 306 | pxa_set_cken(CKEN_AC97, 0); |
307 | } | 307 | } |
308 | return ret; | 308 | return ret; |
309 | } | 309 | } |
@@ -312,7 +312,7 @@ static void pxa2xx_ac97_remove(struct platform_device *pdev) | |||
312 | { | 312 | { |
313 | GCR |= GCR_ACLINK_OFF; | 313 | GCR |= GCR_ACLINK_OFF; |
314 | free_irq(IRQ_AC97, NULL); | 314 | free_irq(IRQ_AC97, NULL); |
315 | pxa_set_cken(CKEN2_AC97, 0); | 315 | pxa_set_cken(CKEN_AC97, 0); |
316 | } | 316 | } |
317 | 317 | ||
318 | static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream, | 318 | static int pxa2xx_ac97_hw_params(struct snd_pcm_substream *substream, |
diff --git a/sound/soc/pxa/pxa2xx-i2s.c b/sound/soc/pxa/pxa2xx-i2s.c index 575a6137c040..50c5c83f67db 100644 --- a/sound/soc/pxa/pxa2xx-i2s.c +++ b/sound/soc/pxa/pxa2xx-i2s.c | |||
@@ -149,7 +149,7 @@ static int pxa2xx_i2s_hw_params(struct snd_pcm_substream *substream, | |||
149 | pxa_gpio_mode(gpio_bus[pxa_i2s.master].tx); | 149 | pxa_gpio_mode(gpio_bus[pxa_i2s.master].tx); |
150 | pxa_gpio_mode(gpio_bus[pxa_i2s.master].frm); | 150 | pxa_gpio_mode(gpio_bus[pxa_i2s.master].frm); |
151 | pxa_gpio_mode(gpio_bus[pxa_i2s.master].clk); | 151 | pxa_gpio_mode(gpio_bus[pxa_i2s.master].clk); |
152 | pxa_set_cken(CKEN8_I2S, 1); | 152 | pxa_set_cken(CKEN_I2S, 1); |
153 | pxa_i2s_wait(); | 153 | pxa_i2s_wait(); |
154 | 154 | ||
155 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 155 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
@@ -234,7 +234,7 @@ static void pxa2xx_i2s_shutdown(struct snd_pcm_substream *substream) | |||
234 | if (SACR1 & (SACR1_DREC | SACR1_DRPL)) { | 234 | if (SACR1 & (SACR1_DREC | SACR1_DRPL)) { |
235 | SACR0 &= ~SACR0_ENB; | 235 | SACR0 &= ~SACR0_ENB; |
236 | pxa_i2s_wait(); | 236 | pxa_i2s_wait(); |
237 | pxa_set_cken(CKEN8_I2S, 0); | 237 | pxa_set_cken(CKEN_I2S, 0); |
238 | } | 238 | } |
239 | } | 239 | } |
240 | 240 | ||