diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-03-28 04:56:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 12:16:09 -0500 |
commit | 4fa95ef639830ccf0ca1ad42ee9bed87ef642f32 (patch) | |
tree | 5b7357fc9f89b0d94e6a969414de2e8499cfc256 /sound/oss/sh_dac_audio.c | |
parent | 7f927fcc2fd1575d01efb4b76665975007945690 (diff) |
[PATCH] sound: Remove unneeded kmalloc() return value casts
Get rid of unnessesary casts of kmalloc() return value in sound/
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Cc: Jaroslav Kysela <perex@perex.cz>
Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/oss/sh_dac_audio.c')
-rw-r--r-- | sound/oss/sh_dac_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/sh_dac_audio.c b/sound/oss/sh_dac_audio.c index 8a9917c919c2..3f7427cd195a 100644 --- a/sound/oss/sh_dac_audio.c +++ b/sound/oss/sh_dac_audio.c | |||
@@ -289,7 +289,7 @@ static int __init dac_audio_init(void) | |||
289 | 289 | ||
290 | in_use = 0; | 290 | in_use = 0; |
291 | 291 | ||
292 | data_buffer = (char *)kmalloc(BUFFER_SIZE, GFP_KERNEL); | 292 | data_buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL); |
293 | if (data_buffer == NULL) | 293 | if (data_buffer == NULL) |
294 | return -ENOMEM; | 294 | return -ENOMEM; |
295 | 295 | ||