Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 429cbf6b authored by Rick Farrington's avatar Rick Farrington Committed by David S. Miller
Browse files

liquidio: update module parameter fw_type to reflect firmware type loaded

parent b36e4820
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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,