diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-26 05:40:22 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 14:50:00 +0000 |
commit | 2a7057e306b198e1e0d7db8615d8e9c69b880913 (patch) | |
tree | 7df90bf748195b4cc061e7ee5c00b2078468321c /sound | |
parent | e8f2af17757b54db7f307b75e088489c480eb889 (diff) | |
download | linux-3.10-2a7057e306b198e1e0d7db8615d8e9c69b880913.tar.gz linux-3.10-2a7057e306b198e1e0d7db8615d8e9c69b880913.tar.bz2 linux-3.10-2a7057e306b198e1e0d7db8615d8e9c69b880913.zip |
[ARM] Remove pointless casts from void pointers,
mostly in and around irq handlers.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/oss/waveartist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/waveartist.c b/sound/oss/waveartist.c index b48c72923a1..88490418f93 100644 --- a/sound/oss/waveartist.c +++ b/sound/oss/waveartist.c @@ -835,7 +835,7 @@ static struct audio_driver waveartist_audio_driver = { static irqreturn_t waveartist_intr(int irq, void *dev_id) { - wavnc_info *devc = (wavnc_info *)dev_id; + wavnc_info *devc = dev_id; int irqstatus, status; spin_lock(&waveartist_lock); |