forked from luck/tmp_suning_uos_patched
V4L/DVB: smscoreapi/w9968cf: drivers/media: Remove unnecesary kmalloc casts
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
e23fb9643b
commit
806ec0fb56
@ -116,9 +116,7 @@ static struct smscore_registry_entry_t *smscore_find_registry(char *devpath)
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
entry = (struct smscore_registry_entry_t *)
|
||||
kmalloc(sizeof(struct smscore_registry_entry_t),
|
||||
GFP_KERNEL);
|
||||
entry = kmalloc(sizeof(struct smscore_registry_entry_t), GFP_KERNEL);
|
||||
if (entry) {
|
||||
entry->mode = default_mode;
|
||||
strcpy(entry->devpath, devpath);
|
||||
|
@ -3429,8 +3429,7 @@ w9968cf_usb_probe(struct usb_interface* intf, const struct usb_device_id* id)
|
||||
else
|
||||
return -ENODEV;
|
||||
|
||||
cam = (struct w9968cf_device*)
|
||||
kzalloc(sizeof(struct w9968cf_device), GFP_KERNEL);
|
||||
cam = kzalloc(sizeof(struct w9968cf_device), GFP_KERNEL);
|
||||
if (!cam)
|
||||
return -ENOMEM;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user