diff options
| author | Zhang Yanfei <zhangyanfei@cn.fujitsu.com> | 2013-03-12 01:29:32 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-18 20:09:37 -0400 |
| commit | 8358f6242dd447a4f694c7bc949bbfc842ca5db1 (patch) | |
| tree | 7e0baa1066520aa926bfb05f5cd15bdc2ba9e24a | |
| parent | b9a129f4813ef5dea8da4670e100f8ba89abebea (diff) | |
driver: tty: vt: remove cast for kmalloc return value
remove cast for kmalloc return value.
Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Cc: Jiri Slaby <jslaby@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/tty/vt/consolemap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/tty/vt/consolemap.c b/drivers/tty/vt/consolemap.c index 248381b30722..2978ca596a7f 100644 --- a/drivers/tty/vt/consolemap.c +++ b/drivers/tty/vt/consolemap.c | |||
| @@ -194,8 +194,7 @@ static void set_inverse_transl(struct vc_data *conp, struct uni_pagedir *p, int | |||
| 194 | q = p->inverse_translations[i]; | 194 | q = p->inverse_translations[i]; |
| 195 | 195 | ||
| 196 | if (!q) { | 196 | if (!q) { |
| 197 | q = p->inverse_translations[i] = (unsigned char *) | 197 | q = p->inverse_translations[i] = kmalloc(MAX_GLYPH, GFP_KERNEL); |
| 198 | kmalloc(MAX_GLYPH, GFP_KERNEL); | ||
| 199 | if (!q) return; | 198 | if (!q) return; |
| 200 | } | 199 | } |
| 201 | memset(q, 0, MAX_GLYPH); | 200 | memset(q, 0, MAX_GLYPH); |
