diff options
author | Ming Lei <tom.leiming@gmail.com> | 2008-02-24 05:41:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-04-25 00:16:55 -0400 |
commit | cdc97792289179974af6dda781c855696358d307 (patch) | |
tree | d633d7e5bd0b14b7581e20790c1a83baadfad80c /drivers/usb/atm | |
parent | a5b6f60c5a30c494017c7a2d11c4067f90d3d0df (diff) |
USB: remove unnecessary type casting of urb->context
urb->context code cleanup
Signed-off-by: Ming Lei <tom.leiming@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/atm')
-rw-r--r-- | drivers/usb/atm/cxacru.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c index a51eeedc18d4..d470c72b737e 100644 --- a/drivers/usb/atm/cxacru.c +++ b/drivers/usb/atm/cxacru.c | |||
@@ -444,7 +444,7 @@ CXACRU_ALL_FILES(INIT); | |||
444 | /* the following three functions are stolen from drivers/usb/core/message.c */ | 444 | /* the following three functions are stolen from drivers/usb/core/message.c */ |
445 | static void cxacru_blocking_completion(struct urb *urb) | 445 | static void cxacru_blocking_completion(struct urb *urb) |
446 | { | 446 | { |
447 | complete((struct completion *)urb->context); | 447 | complete(urb->context); |
448 | } | 448 | } |
449 | 449 | ||
450 | static void cxacru_timeout_kill(unsigned long data) | 450 | static void cxacru_timeout_kill(unsigned long data) |