projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc6eb27
)
USB: isd200.c: Remove unnecessary kmalloc cast
author
Joe Perches
<joe@perches.com>
Tue, 1 Jun 2010 03:23:19 +0000
(20:23 -0700)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Tue, 10 Aug 2010 21:35:34 +0000
(14:35 -0700)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/storage/isd200.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/storage/isd200.c
b/drivers/usb/storage/isd200.c
index e9cbc1467f76428749adb952c462efdced0e5608..6b9982cd54230b434a50677eefe4b14f2b3bada3 100644
(file)
--- a/
drivers/usb/storage/isd200.c
+++ b/
drivers/usb/storage/isd200.c
@@
-1456,8
+1456,7
@@
static int isd200_init_info(struct us_data *us)
int retStatus = ISD200_GOOD;
struct isd200_info *info;
- info = (struct isd200_info *)
- kzalloc(sizeof(struct isd200_info), GFP_KERNEL);
+ info = kzalloc(sizeof(struct isd200_info), GFP_KERNEL);
if (!info)
retStatus = ISD200_ERROR;
else {