diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2011-11-08 14:14:14 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-11-11 09:09:29 -0500 |
commit | 8383c6bf9356cfd7093f7afbf16d2b8b4e1c2772 (patch) | |
tree | 99a348a8f6ec3102a8b6a1d82d0fd4cb4e915b42 /drivers/hid | |
parent | 30307c69d59b14723fbf8a524847b302388c702d (diff) |
HID: hid-lg4ff: Casting (void *) value returned by kmalloc is useless
Casting (void *) value returned by kmalloc is useless
as mentioned in Documentation/CodingStyle, Chap 14.
The semantic patch that makes this change is available
in scripts/coccinelle/api/alloc/drop_kmalloc_cast.cocci.
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-lg4ff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c index 103f30d93f76..6ecc9e220440 100644 --- a/drivers/hid/hid-lg4ff.c +++ b/drivers/hid/hid-lg4ff.c | |||
@@ -430,7 +430,7 @@ int lg4ff_init(struct hid_device *hid) | |||
430 | } | 430 | } |
431 | 431 | ||
432 | /* Add the device to device_list */ | 432 | /* Add the device to device_list */ |
433 | entry = (struct lg4ff_device_entry *)kzalloc(sizeof(struct lg4ff_device_entry), GFP_KERNEL); | 433 | entry = kzalloc(sizeof(struct lg4ff_device_entry), GFP_KERNEL); |
434 | if (!entry) { | 434 | if (!entry) { |
435 | hid_err(hid, "Cannot add device, insufficient memory.\n"); | 435 | hid_err(hid, "Cannot add device, insufficient memory.\n"); |
436 | return -ENOMEM; | 436 | return -ENOMEM; |