liquidio: update module parameter fw_type to reflect firmware type loaded
Signed-off-by: Rick Farrington <ricardo.farrington@cavium.com> Signed-off-by: Felix Manlunas <felix.manlunas@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b36e482091
commit
429cbf6bde
|
@ -1934,10 +1934,12 @@ static int load_firmware(struct octeon_device *oct)
|
|||
char fw_name[LIO_MAX_FW_FILENAME_LEN];
|
||||
char *tmp_fw_type;
|
||||
|
||||
if (fw_type_is_auto())
|
||||
if (fw_type_is_auto()) {
|
||||
tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
|
||||
else
|
||||
strncpy(fw_type, tmp_fw_type, sizeof(fw_type));
|
||||
} else {
|
||||
tmp_fw_type = fw_type;
|
||||
}
|
||||
|
||||
sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
|
||||
octeon_get_conf(oct)->card_name, tmp_fw_type,
|
||||
|
|
Loading…
Reference in New Issue