]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drivers/usb/storage/realtek_cr.c: fix build
authorAndrew Morton <akpm@linux-foundation.org>
Tue, 30 Apr 2013 22:26:44 +0000 (15:26 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 1 May 2013 00:04:00 +0000 (17:04 -0700)
Remove unused local `us', which broke the build.  Also nuke an unneeded
cast.

Repairs commit 191648d03d20 ("usb: storage: Convert US_DEBUGP to
usb_stor_dbg").

Cc: Joe Perches <joe@perches.com>
Acked-by: David Rientjes <rientjes@google.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/usb/storage/realtek_cr.c

index 4797228747fbfda5fb15d12aa589b63f2d453f1b..8623577bbbe70d608eb0866f18be56c20513a5bf 100644 (file)
@@ -933,14 +933,11 @@ static int realtek_cr_autosuspend_setup(struct us_data *us)
 
 static void realtek_cr_destructor(void *extra)
 {
-       struct rts51x_chip *chip = (struct rts51x_chip *)extra;
-       struct us_data *us;
+       struct rts51x_chip *chip = extra;
 
        if (!chip)
                return;
 
-       us = chip->us;
-
 #ifdef CONFIG_REALTEK_AUTOPM
        if (ss_en) {
                del_timer(&chip->rts51x_suspend_timer);