aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorAhmed S. Darwish <darwish.07@gmail.com>2007-01-06 15:18:52 +0200
committerJiri Kosina <jkosina@suse.cz>2007-01-08 16:05:24 +0100
commitd6509c36ba333282362e5f9769869f8a8d790aaf (patch)
treee78a46b1e0a239884603ff1cbf8ef349a04e9dc0 /drivers/hid
parentHID: fix mappings for DiNovo Edge Keyboard - Logitech USB BT receiver (diff)
downloadlinux-dev-d6509c36ba333282362e5f9769869f8a8d790aaf.tar.xz
linux-dev-d6509c36ba333282362e5f9769869f8a8d790aaf.zip
HID: tiny patch to remove a kmalloc cast
Remove unnecessary cast. Signed-off-by: Ahmed Darwish <darwish.07@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 18c2b3cf6bcc..2fcfdbb43cd3 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -656,7 +656,7 @@ struct hid_device *hid_parse_report(__u8 *start, unsigned size)
for (i = 0; i < HID_REPORT_TYPES; i++)
INIT_LIST_HEAD(&device->report_enum[i].report_list);
- if (!(device->rdesc = (__u8 *)kmalloc(size, GFP_KERNEL))) {
+ if (!(device->rdesc = kmalloc(size, GFP_KERNEL))) {
kfree(device->collection);
kfree(device);
return NULL;