usb/storage/ene_ub6250: Remove redundant NULL check before release_firmware() and...
authorJesper Juhl <jj@chaosbits.net>
Mon, 9 Apr 2012 20:52:04 +0000 (22:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Apr 2012 20:52:35 +0000 (13:52 -0700)
commite44fabbe7fbf8c71cd2e7d28078202e557b4e057
treef330c29b20bfae3b5f75d8dfec1af2e1f0a0197f
parentc6fa0b4c4e09a13e034a1c6c542dc2b3539ba1b8
usb/storage/ene_ub6250: Remove redundant NULL check before release_firmware() and pointless assignment

release_firmware() tests for a NULL pointer, so it's redundant to do
that checking before calling it.

Additionally, in ene_load_bincode(), 'sd_fw' is a local variable so
setting it to NULL just before it goes out of scope is completely
pointless, so remove that assignment.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/storage/ene_ub6250.c