mirror of https://gitee.com/openkylin/linux.git
libertas: drop useless default_fw_name variable
Signed-off-by: Andres Salomon <dilinger@debian.org> Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
66bb42fd47
commit
82209adcb1
|
@ -19,9 +19,8 @@
|
|||
#define MESSAGE_HEADER_LEN 4
|
||||
|
||||
static const char usbdriver_name[] = "usb8xxx";
|
||||
static u8 *default_fw_name = "usb8388.bin";
|
||||
|
||||
static char *lbs_fw_name;
|
||||
static char *lbs_fw_name = "usb8388.bin";
|
||||
module_param_named(fw_name, lbs_fw_name, charp, 0644);
|
||||
|
||||
/*
|
||||
|
@ -1027,10 +1026,6 @@ static int if_usb_init_module(void)
|
|||
|
||||
lbs_deb_enter(LBS_DEB_MAIN);
|
||||
|
||||
if (lbs_fw_name == NULL) {
|
||||
lbs_fw_name = default_fw_name;
|
||||
}
|
||||
|
||||
ret = usb_register(&if_usb_driver);
|
||||
|
||||
lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
|
||||
|
|
Loading…
Reference in New Issue