struct hwmon_chip_info {
                const struct hwmon_ops *ops;
-               const struct hwmon_channel_info **info;
+               const struct hwmon_channel_info * const *info;
        };
 
 It contains the following fields:
                .config = lm75_temp_config,
        };
 
-       static const struct hwmon_channel_info *lm75_info[] = {
+       static const struct hwmon_channel_info * const lm75_info[] = {
                &lm75_chip,
                &lm75_temp,
                NULL
        The HWMON_CHANNEL_INFO() macro can and should be used when possible.
        With this macro, the above example can be simplified to
 
-       static const struct hwmon_channel_info *lm75_info[] = {
+       static const struct hwmon_channel_info * const lm75_info[] = {
                HWMON_CHANNEL_INFO(chip,
                                HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL),
                HWMON_CHANNEL_INFO(temp,
 
 
 void hl_hwmon_release_resources(struct hl_device *hdev)
 {
-       const struct hwmon_channel_info **channel_info_arr;
+       const struct hwmon_channel_info * const *channel_info_arr;
        int i = 0;
 
        if (!hdev->hl_chip_info->info)
 
        struct hwmon_thermal_data *tdata = tz->devdata;
        struct hwmon_device *hwdev = to_hwmon_device(tdata->dev);
        const struct hwmon_chip_info *chip = hwdev->chip;
-       const struct hwmon_channel_info **info = chip->info;
+       const struct hwmon_channel_info * const *info = chip->info;
        unsigned int i;
        int err;
 
 {
        struct hwmon_device *hwdev = to_hwmon_device(dev);
        const struct hwmon_chip_info *chip = hwdev->chip;
-       const struct hwmon_channel_info **info = chip->info;
+       const struct hwmon_channel_info * const *info = chip->info;
        void *drvdata = dev_get_drvdata(dev);
        int i;
 
 
  */
 struct hwmon_chip_info {
        const struct hwmon_ops *ops;
-       const struct hwmon_channel_info **info;
+       const struct hwmon_channel_info * const *info;
 };
 
 /* hwmon_device_register() is deprecated */