|
@@ -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,
|