This trivial patch just remove void cats from sound/oss/sh_dac_audio.c Signed-off-by: André Lopes <andre.neo.net@xxxxxxxxx> --- sound/oss/sh_dac_audio.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sound/oss/sh_dac_audio.c b/sound/oss/sh_dac_audio.c index 78cfb66..7247ea1 100755 --- a/sound/oss/sh_dac_audio.c +++ b/sound/oss/sh_dac_audio.c @@ -200,21 +200,21 @@ static ssize_t dac_audio_write(struct file *file, const char *buf, size_t count, if (count > free) count = free; if (buffer_begin > buffer_end) { - if (copy_from_user((void *)buffer_end, buf, count)) + if (copy_from_user(buffer_end, buf, count)) return -EFAULT; buffer_end += count; } else { nbytes = data_buffer + BUFFER_SIZE - buffer_end; if (nbytes > count) { - if (copy_from_user((void *)buffer_end, buf, count)) + if (copy_from_user(buffer_end, buf, count)) return -EFAULT; buffer_end += count; } else { - if (copy_from_user((void *)buffer_end, buf, nbytes)) + if (copy_from_user(buffer_end, buf, nbytes)) return -EFAULT; if (copy_from_user - ((void *)data_buffer, buf + nbytes, count - nbytes)) + (data_buffer, buf + nbytes, count - nbytes)) return -EFAULT; buffer_end = data_buffer + count - nbytes; } @@ -322,7 +322,7 @@ static void __exit dac_audio_exit(void) free_irq(TIMER1_IRQ, 0); unregister_sound_dsp(device_major); - kfree((void *)data_buffer); + kfree(data_buffer); } module_init(dac_audio_init); -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html