[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <919fe2b30905251720n24837f56xf24a93ca7bdf89ae@mail.gmail.com>
Date: Mon, 25 May 2009 20:20:04 -0400
From: Mark Asselstine <mark.asselstine@...driver.com>
To: André Lopes <andre.neo.net@...il.com>
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org,
askulysh@...ge.kiev.ua
Subject: Re: [PATCH] oss: Remove void casts
2009/5/22 André Lopes <andre.neo.net@...il.com>:
> This trivial patch just remove void cats from sound/oss/sh_dac_audio.c
darn cats got out again :P
s/void cats/void pointer casts/
Regards,
Mark
>
> 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 kernel-janitors" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
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