diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2013-04-30 15:26:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-30 17:04:00 -0700 |
commit | 677a0b5ac16337277139798ec43fc32ebaae1347 (patch) | |
tree | b27a64ff0dd0e5fb3529f2316f3331348c145b30 /drivers | |
parent | c9ef713993ba168b38d1a97ea0ab00874f1da022 (diff) | |
download | linux-3.10-677a0b5ac16337277139798ec43fc32ebaae1347.tar.gz linux-3.10-677a0b5ac16337277139798ec43fc32ebaae1347.tar.bz2 linux-3.10-677a0b5ac16337277139798ec43fc32ebaae1347.zip |
drivers/usb/storage/realtek_cr.c: fix build
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/storage/realtek_cr.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/storage/realtek_cr.c b/drivers/usb/storage/realtek_cr.c index 4797228747f..8623577bbbe 100644 --- a/drivers/usb/storage/realtek_cr.c +++ b/drivers/usb/storage/realtek_cr.c @@ -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); |