lkml.org 
[lkml]   [2009]   [May]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
Subject[PATCH] oss: Remove void casts
From
This trivial patch just remove void cats from sound/oss/sh_dac_audio.c

Signed-off-by: André Lopes <andre.neo.net@gmail.com>

---
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 linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2009-05-22 15:31    [W:0.026 / U:0.716 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site