diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-26 09:40:22 (GMT) |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 14:50:00 (GMT) |
commit | 2a7057e306b198e1e0d7db8615d8e9c69b880913 (patch) | |
tree | 7df90bf748195b4cc061e7ee5c00b2078468321c /arch/arm/mach-s3c2410/usb-simtec.c | |
parent | e8f2af17757b54db7f307b75e088489c480eb889 (diff) | |
download | linux-2a7057e306b198e1e0d7db8615d8e9c69b880913.tar.xz |
[ARM] Remove pointless casts from void pointers,
mostly in and around irq handlers.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/usb-simtec.c')
-rw-r--r-- | arch/arm/mach-s3c2410/usb-simtec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/usb-simtec.c b/arch/arm/mach-s3c2410/usb-simtec.c index bcd562a..6aec86a 100644 --- a/arch/arm/mach-s3c2410/usb-simtec.c +++ b/arch/arm/mach-s3c2410/usb-simtec.c @@ -60,7 +60,7 @@ usb_simtec_powercontrol(int port, int to) static irqreturn_t usb_simtec_ocirq(int irq, void *pw) { - struct s3c2410_hcd_info *info = (struct s3c2410_hcd_info *)pw; + struct s3c2410_hcd_info *info = pw; if (s3c2410_gpio_getpin(S3C2410_GPG10) == 0) { pr_debug("usb_simtec: over-current irq (oc detected)\n"); |