forked from luck/tmp_suning_uos_patched
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>
This commit is contained in:
parent
ffce7a829d
commit
73de76a0a4
|
@ -1228,7 +1228,8 @@ int probe_sbmpu(struct address_info *hw_config, struct module *owner)
|
|||
}
|
||||
attach_mpu401(hw_config, owner);
|
||||
if (last_sb->irq == -hw_config->irq)
|
||||
last_sb->midi_irq_cookie=(void *)hw_config->slots[1];
|
||||
last_sb->midi_irq_cookie =
|
||||
(void *)(long) hw_config->slots[1];
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue
Block a user