diff options
author | Suresh Jayaraman <sjayaraman@novell.com> | 2007-06-28 11:16:30 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-07-12 16:34:43 -0700 |
commit | 13f9966b3ba5b45f47f2ea0eb0a90afceedfbb1f (patch) | |
tree | 6933fe7328b1c50dd30d331515986ad7e56a41b0 /drivers/usb/host | |
parent | 6c59649d49df4b9084bf407890734b5965d77b41 (diff) | |
download | op-kernel-dev-13f9966b3ba5b45f47f2ea0eb0a90afceedfbb1f.zip op-kernel-dev-13f9966b3ba5b45f47f2ea0eb0a90afceedfbb1f.tar.gz |
USB: ohci-pnx4008: Remove unnecessary cast of return value of kzalloc
Remove unnecessary cast of return value of kzalloc() in
usb/host/ohci-pnx4008.c
Signed-off-by: Suresh Jayaraman <sjayaraman@novell.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/ohci-pnx4008.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ohci-pnx4008.c b/drivers/usb/host/ohci-pnx4008.c index d601bbb..ca2a6ab 100644 --- a/drivers/usb/host/ohci-pnx4008.c +++ b/drivers/usb/host/ohci-pnx4008.c @@ -134,7 +134,7 @@ static int isp1301_attach(struct i2c_adapter *adap, int addr, int kind) { struct i2c_client *c; - c = (struct i2c_client *)kzalloc(sizeof(*c), GFP_KERNEL); + c = kzalloc(sizeof(*c), GFP_KERNEL); if (!c) return -ENOMEM; |