Commit 47b60ec7 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Michael S. Tsirkin
Browse files

vdpa: solidrun: constify pointers to hwmon_channel_info



Statically allocated array of pointers to hwmon_channel_info can be made
const for safety.

Acked-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Reviewed-by: default avatarAlvaro Karsz <alvaro.karsz@solid-run.com>
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Message-Id: <20230511175451.282096-1-krzysztof.kozlowski@linaro.org>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Acked-by: default avatarJason Wang <jasowang@redhat.com>
parent 49a64c6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -159,7 +159,7 @@ static const struct hwmon_ops snet_hwmon_ops = {
	.read_string = snet_hwmon_read_string
	.read_string = snet_hwmon_read_string
};
};


static const struct hwmon_channel_info *snet_hwmon_info[] = {
static const struct hwmon_channel_info * const snet_hwmon_info[] = {
	HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_CRIT | HWMON_T_LABEL,
	HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_CRIT | HWMON_T_LABEL,
			   HWMON_T_INPUT | HWMON_T_CRIT | HWMON_T_LABEL),
			   HWMON_T_INPUT | HWMON_T_CRIT | HWMON_T_LABEL),
	HWMON_CHANNEL_INFO(power, HWMON_P_INPUT | HWMON_P_LABEL),
	HWMON_CHANNEL_INFO(power, HWMON_P_INPUT | HWMON_P_LABEL),