Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: isd200.c: Remove unnecessary kmalloc cast

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Joe Perches and committed by
Greg Kroah-Hartman
a5cc8049 dc6eb27b

+1 -2
+1 -2
drivers/usb/storage/isd200.c
··· 1456 1456 int retStatus = ISD200_GOOD; 1457 1457 struct isd200_info *info; 1458 1458 1459 - info = (struct isd200_info *) 1460 - kzalloc(sizeof(struct isd200_info), GFP_KERNEL); 1459 + info = kzalloc(sizeof(struct isd200_info), GFP_KERNEL); 1461 1460 if (!info) 1462 1461 retStatus = ISD200_ERROR; 1463 1462 else {