diff options
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.c | 24 | ||||
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.h | 31 |
2 files changed, 4 insertions, 51 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio.c b/sound/pci/cs5535audio/cs5535audio.c index b8e75ef9c1e6..2b35889787be 100644 --- a/sound/pci/cs5535audio/cs5535audio.c +++ b/sound/pci/cs5535audio/cs5535audio.c | |||
@@ -206,7 +206,6 @@ static void process_bm1_irq(struct cs5535audio *cs5535au) | |||
206 | static irqreturn_t snd_cs5535audio_interrupt(int irq, void *dev_id) | 206 | static irqreturn_t snd_cs5535audio_interrupt(int irq, void *dev_id) |
207 | { | 207 | { |
208 | u16 acc_irq_stat; | 208 | u16 acc_irq_stat; |
209 | u8 bm_stat; | ||
210 | unsigned char count; | 209 | unsigned char count; |
211 | struct cs5535audio *cs5535au = dev_id; | 210 | struct cs5535audio *cs5535au = dev_id; |
212 | 211 | ||
@@ -217,7 +216,7 @@ static irqreturn_t snd_cs5535audio_interrupt(int irq, void *dev_id) | |||
217 | 216 | ||
218 | if (!acc_irq_stat) | 217 | if (!acc_irq_stat) |
219 | return IRQ_NONE; | 218 | return IRQ_NONE; |
220 | for (count = 0; count < 10; count++) { | 219 | for (count = 0; count < 4; count++) { |
221 | if (acc_irq_stat & (1 << count)) { | 220 | if (acc_irq_stat & (1 << count)) { |
222 | switch (count) { | 221 | switch (count) { |
223 | case IRQ_STS: | 222 | case IRQ_STS: |
@@ -232,26 +231,9 @@ static irqreturn_t snd_cs5535audio_interrupt(int irq, void *dev_id) | |||
232 | case BM1_IRQ_STS: | 231 | case BM1_IRQ_STS: |
233 | process_bm1_irq(cs5535au); | 232 | process_bm1_irq(cs5535au); |
234 | break; | 233 | break; |
235 | case BM2_IRQ_STS: | ||
236 | bm_stat = cs_readb(cs5535au, ACC_BM2_STATUS); | ||
237 | break; | ||
238 | case BM3_IRQ_STS: | ||
239 | bm_stat = cs_readb(cs5535au, ACC_BM3_STATUS); | ||
240 | break; | ||
241 | case BM4_IRQ_STS: | ||
242 | bm_stat = cs_readb(cs5535au, ACC_BM4_STATUS); | ||
243 | break; | ||
244 | case BM5_IRQ_STS: | ||
245 | bm_stat = cs_readb(cs5535au, ACC_BM5_STATUS); | ||
246 | break; | ||
247 | case BM6_IRQ_STS: | ||
248 | bm_stat = cs_readb(cs5535au, ACC_BM6_STATUS); | ||
249 | break; | ||
250 | case BM7_IRQ_STS: | ||
251 | bm_stat = cs_readb(cs5535au, ACC_BM7_STATUS); | ||
252 | break; | ||
253 | default: | 234 | default: |
254 | snd_printk(KERN_ERR "Unexpected irq src\n"); | 235 | snd_printk(KERN_ERR "Unexpected irq src: " |
236 | "0x%x\n", acc_irq_stat); | ||
255 | break; | 237 | break; |
256 | } | 238 | } |
257 | } | 239 | } |
diff --git a/sound/pci/cs5535audio/cs5535audio.h b/sound/pci/cs5535audio/cs5535audio.h index 516219ad5e8f..66bae7664193 100644 --- a/sound/pci/cs5535audio/cs5535audio.h +++ b/sound/pci/cs5535audio/cs5535audio.h | |||
@@ -16,48 +16,19 @@ | |||
16 | #define ACC_IRQ_STATUS 0x12 | 16 | #define ACC_IRQ_STATUS 0x12 |
17 | #define ACC_BM0_CMD 0x20 | 17 | #define ACC_BM0_CMD 0x20 |
18 | #define ACC_BM1_CMD 0x28 | 18 | #define ACC_BM1_CMD 0x28 |
19 | #define ACC_BM2_CMD 0x30 | ||
20 | #define ACC_BM3_CMD 0x38 | ||
21 | #define ACC_BM4_CMD 0x40 | ||
22 | #define ACC_BM5_CMD 0x48 | ||
23 | #define ACC_BM6_CMD 0x50 | ||
24 | #define ACC_BM7_CMD 0x58 | ||
25 | #define ACC_BM0_PRD 0x24 | 19 | #define ACC_BM0_PRD 0x24 |
26 | #define ACC_BM1_PRD 0x2C | 20 | #define ACC_BM1_PRD 0x2C |
27 | #define ACC_BM2_PRD 0x34 | ||
28 | #define ACC_BM3_PRD 0x3C | ||
29 | #define ACC_BM4_PRD 0x44 | ||
30 | #define ACC_BM5_PRD 0x4C | ||
31 | #define ACC_BM6_PRD 0x54 | ||
32 | #define ACC_BM7_PRD 0x5C | ||
33 | #define ACC_BM0_STATUS 0x21 | 21 | #define ACC_BM0_STATUS 0x21 |
34 | #define ACC_BM1_STATUS 0x29 | 22 | #define ACC_BM1_STATUS 0x29 |
35 | #define ACC_BM2_STATUS 0x31 | ||
36 | #define ACC_BM3_STATUS 0x39 | ||
37 | #define ACC_BM4_STATUS 0x41 | ||
38 | #define ACC_BM5_STATUS 0x49 | ||
39 | #define ACC_BM6_STATUS 0x51 | ||
40 | #define ACC_BM7_STATUS 0x59 | ||
41 | #define ACC_BM0_PNTR 0x60 | 23 | #define ACC_BM0_PNTR 0x60 |
42 | #define ACC_BM1_PNTR 0x64 | 24 | #define ACC_BM1_PNTR 0x64 |
43 | #define ACC_BM2_PNTR 0x68 | 25 | |
44 | #define ACC_BM3_PNTR 0x6C | ||
45 | #define ACC_BM4_PNTR 0x70 | ||
46 | #define ACC_BM5_PNTR 0x74 | ||
47 | #define ACC_BM6_PNTR 0x78 | ||
48 | #define ACC_BM7_PNTR 0x7C | ||
49 | /* acc_codec bar0 reg bits */ | 26 | /* acc_codec bar0 reg bits */ |
50 | /* ACC_IRQ_STATUS */ | 27 | /* ACC_IRQ_STATUS */ |
51 | #define IRQ_STS 0 | 28 | #define IRQ_STS 0 |
52 | #define WU_IRQ_STS 1 | 29 | #define WU_IRQ_STS 1 |
53 | #define BM0_IRQ_STS 2 | 30 | #define BM0_IRQ_STS 2 |
54 | #define BM1_IRQ_STS 3 | 31 | #define BM1_IRQ_STS 3 |
55 | #define BM2_IRQ_STS 4 | ||
56 | #define BM3_IRQ_STS 5 | ||
57 | #define BM4_IRQ_STS 6 | ||
58 | #define BM5_IRQ_STS 7 | ||
59 | #define BM6_IRQ_STS 8 | ||
60 | #define BM7_IRQ_STS 9 | ||
61 | /* ACC_BMX_STATUS */ | 32 | /* ACC_BMX_STATUS */ |
62 | #define EOP (1<<0) | 33 | #define EOP (1<<0) |
63 | #define BM_EOP_ERR (1<<1) | 34 | #define BM_EOP_ERR (1<<1) |