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

Commit d01031b2 authored by Johannes Berg's avatar Johannes Berg
Browse files

iwlwifi: remove EEPROM version message by default



If the EEPROM reading was successful, don't print
a message by default, the EEPROM version isn't all
that interesting. Change the message to DEBUG_INFO
priority so it can still be obtained.

Reviewed-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent e7332691
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -889,7 +889,7 @@ int iwl_eeprom_check_version(struct iwl_eeprom_data *data,
{
	if (data->eeprom_version >= trans->cfg->eeprom_ver ||
	    data->calib_version >= trans->cfg->eeprom_calib_ver) {
		IWL_INFO(trans, "device EEPROM VER=0x%x, CALIB=0x%x\n",
		IWL_DEBUG_INFO(trans, "device EEPROM VER=0x%x, CALIB=0x%x\n",
			       data->eeprom_version, data->calib_version);
		return 0;
	}