mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
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: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Alvaro Karsz <alvaro.karsz@solid-run.com> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Message-Id: <20230511175451.282096-1-krzysztof.kozlowski@linaro.org> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
49a64c6dbc
commit
47b60ec7ba
@ -159,7 +159,7 @@ static const struct hwmon_ops snet_hwmon_ops = {
|
||||
.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_T_INPUT | HWMON_T_CRIT | HWMON_T_LABEL),
|
||||
HWMON_CHANNEL_INFO(power, HWMON_P_INPUT | HWMON_P_LABEL),
|
||||
|
Loading…
Reference in New Issue
Block a user