diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
commit | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (patch) | |
tree | 93824f573767da634fbc82c388b6d33cc454212b /sound/pci/als300.c | |
parent | c1a26e7d40fb814716950122353a1a556844286b (diff) | |
parent | 7d12e780e003f93433d49ce78cfedf4b4c52adc5 (diff) |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
IRQ: Typedef the IRQ handler function type
IRQ: Typedef the IRQ flow handler function type
Diffstat (limited to 'sound/pci/als300.c')
-rw-r--r-- | sound/pci/als300.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/pci/als300.c b/sound/pci/als300.c index 96cfb8ae5055..9b16c299f0a9 100644 --- a/sound/pci/als300.c +++ b/sound/pci/als300.c | |||
@@ -204,8 +204,7 @@ static int snd_als300_dev_free(struct snd_device *device) | |||
204 | return snd_als300_free(chip); | 204 | return snd_als300_free(chip); |
205 | } | 205 | } |
206 | 206 | ||
207 | static irqreturn_t snd_als300_interrupt(int irq, void *dev_id, | 207 | static irqreturn_t snd_als300_interrupt(int irq, void *dev_id) |
208 | struct pt_regs *regs) | ||
209 | { | 208 | { |
210 | u8 status; | 209 | u8 status; |
211 | struct snd_als300 *chip = dev_id; | 210 | struct snd_als300 *chip = dev_id; |
@@ -236,8 +235,7 @@ static irqreturn_t snd_als300_interrupt(int irq, void *dev_id, | |||
236 | return IRQ_HANDLED; | 235 | return IRQ_HANDLED; |
237 | } | 236 | } |
238 | 237 | ||
239 | static irqreturn_t snd_als300plus_interrupt(int irq, void *dev_id, | 238 | static irqreturn_t snd_als300plus_interrupt(int irq, void *dev_id) |
240 | struct pt_regs *regs) | ||
241 | { | 239 | { |
242 | u8 general, mpu, dram; | 240 | u8 general, mpu, dram; |
243 | struct snd_als300 *chip = dev_id; | 241 | struct snd_als300 *chip = dev_id; |