lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 22 May 2009 14:27:45 +0100
From:	André Lopes <andre.neo.net@...il.com>
To:	kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org,
	askulysh@...ge.kiev.ua
Subject: [PATCH] oss: Remove void casts

This trivial patch just remove void cats from sound/oss/sh_dac_audio.c

Signed-off-by: André Lopes <andre.neo.net@...il.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@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ