Commit 0c04328c authored by Alex Elder's avatar Alex Elder Committed by Jakub Kicinski
Browse files

net: ipa: add IPA v5.0 to ipa_version_string()



In the IPA device sysfs directory, the "version" file can be read to
find out what IPA version is implemented.  The content of this file
is supplied by ipa_version_string(), which needs to be updated to
properly handle IPA v5.0.

Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Reviewed-by: default avatarSimon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/20230322144742.2203947-1-elder@linaro.org


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 8da3a559
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -36,6 +36,8 @@ static const char *ipa_version_string(struct ipa *ipa)
		return "4.9";
	case IPA_VERSION_4_11:
		return "4.11";
	case IPA_VERSION_5_0:
		return "5.0";
	default:
		return "0.0";	/* Won't happen (checked at probe time) */
	}