diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-01-06 15:18:52 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2007-01-08 16:05:24 +0100 |
commit | d6509c36ba333282362e5f9769869f8a8d790aaf (patch) | |
tree | e78a46b1e0a239884603ff1cbf8ef349a04e9dc0 /drivers/hid | |
parent | 35068976916fdef82d6e69ef1f8c9a1c47732759 (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 18c2b3cf6bc..2fcfdbb43cd 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; |