thermal: constify of_device_id array

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>

authored by Fabian Frederick and committed by Eduardo Valentin d877a62b 7e497a73

Changed files
+2 -2
drivers
+1 -1
drivers/thermal/st/st_thermal_memmap.c
··· 174 174 .crit_temp = 120, 175 175 }; 176 176 177 - static struct of_device_id st_mmap_thermal_of_match[] = { 177 + static const struct of_device_id st_mmap_thermal_of_match[] = { 178 178 { .compatible = "st,stih416-mpe-thermal", .data = &st_416mpe_cdata }, 179 179 { .compatible = "st,stih407-thermal", .data = &st_407_cdata }, 180 180 { /* sentinel */ }
+1 -1
drivers/thermal/st/st_thermal_syscfg.c
··· 143 143 .crit_temp = 120, 144 144 }; 145 145 146 - static struct of_device_id st_syscfg_thermal_of_match[] = { 146 + static const struct of_device_id st_syscfg_thermal_of_match[] = { 147 147 { .compatible = "st,stih415-sas-thermal", .data = &st_415sas_cdata }, 148 148 { .compatible = "st,stih415-mpe-thermal", .data = &st_415mpe_cdata }, 149 149 { .compatible = "st,stih416-sas-thermal", .data = &st_416sas_cdata },