aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2008-02-06 04:36:16 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-06 13:41:00 -0500
commit73de76a0a42efa173c29aff32e555ac6de992573 (patch)
treedef98bdd451060ac17cff6ed4bb1323df8d1f508 /sound
parentffce7a829d913f40678e0ccf2d87a8c2050261a0 (diff)
sound/oss/sb_common.c: fix casting warning
sound/oss/sb_common.c: In function 'probe_sbmpu': sound/oss/sb_common.c:1231: warning: cast to pointer from integer of different size Signed-off-by: Jeff Garzik <jgarzik@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/oss/sb_common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/oss/sb_common.c b/sound/oss/sb_common.c
index 07cbacf63824..77d0e5efda76 100644
--- a/sound/oss/sb_common.c
+++ b/sound/oss/sb_common.c
@@ -1228,7 +1228,8 @@ int probe_sbmpu(struct address_info *hw_config, struct module *owner)
1228 } 1228 }
1229 attach_mpu401(hw_config, owner); 1229 attach_mpu401(hw_config, owner);
1230 if (last_sb->irq == -hw_config->irq) 1230 if (last_sb->irq == -hw_config->irq)
1231 last_sb->midi_irq_cookie=(void *)hw_config->slots[1]; 1231 last_sb->midi_irq_cookie =
1232 (void *)(long) hw_config->slots[1];
1232 return 1; 1233 return 1;
1233 } 1234 }
1234#endif 1235#endif