platform/x86: hp-wmi: Order DMI board name arrays
The hp-wmi driver has a number of arrays that are getting new entries and all/most entries have been added to the end of the array. As a result, the numerical order is mixed up in a few entries. Reorder the array entries. Split lines for each two leading chars to make the arrays easier to read. Add also trailing commas. Link: https://patch.msgid.link/20251128120215.4450-1-ilpo.jarvinen@linux.intel.com Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>pull/1354/merge
parent
594f9cce51
commit
68779adbab
|
|
@ -63,12 +63,16 @@ MODULE_ALIAS("wmi:5FB7F034-2C63-45E9-BE91-3D44E2C707E4");
|
||||||
* contains "PerformanceControl".
|
* contains "PerformanceControl".
|
||||||
*/
|
*/
|
||||||
static const char * const omen_thermal_profile_boards[] = {
|
static const char * const omen_thermal_profile_boards[] = {
|
||||||
"84DA", "84DB", "84DC", "8574", "8575", "860A", "87B5", "8572", "8573",
|
"84DA", "84DB", "84DC",
|
||||||
"8600", "8601", "8602", "8605", "8606", "8607", "8746", "8747", "8749",
|
"8572", "8573", "8574", "8575",
|
||||||
"874A", "8603", "8604", "8748", "886B", "886C", "878A", "878B", "878C",
|
"8600", "8601", "8602", "8603", "8604", "8605", "8606", "8607", "860A",
|
||||||
"88C8", "88CB", "8786", "8787", "8788", "88D1", "88D2", "88F4", "88FD",
|
"8746", "8747", "8748", "8749", "874A", "8786", "8787", "8788", "878A",
|
||||||
"88F5", "88F6", "88F7", "88FE", "88FF", "8900", "8901", "8902", "8912",
|
"878B", "878C", "87B5",
|
||||||
"8917", "8918", "8949", "894A", "89EB", "8BAD", "8A42", "8A15"
|
"886B", "886C", "88C8", "88CB", "88D1", "88D2", "88F4", "88F5", "88F6",
|
||||||
|
"88F7", "88FD", "88FE", "88FF",
|
||||||
|
"8900", "8901", "8902", "8912", "8917", "8918", "8949", "894A", "89EB",
|
||||||
|
"8A15", "8A42",
|
||||||
|
"8BAD",
|
||||||
};
|
};
|
||||||
|
|
||||||
/* DMI Board names of Omen laptops that are specifically set to be thermal
|
/* DMI Board names of Omen laptops that are specifically set to be thermal
|
||||||
|
|
@ -76,7 +80,8 @@ static const char * const omen_thermal_profile_boards[] = {
|
||||||
* the get system design information WMI call returns
|
* the get system design information WMI call returns
|
||||||
*/
|
*/
|
||||||
static const char * const omen_thermal_profile_force_v0_boards[] = {
|
static const char * const omen_thermal_profile_force_v0_boards[] = {
|
||||||
"8607", "8746", "8747", "8749", "874A", "8748"
|
"8607",
|
||||||
|
"8746", "8747", "8748", "8749", "874A",
|
||||||
};
|
};
|
||||||
|
|
||||||
/* DMI board names of Omen laptops that have a thermal profile timer which will
|
/* DMI board names of Omen laptops that have a thermal profile timer which will
|
||||||
|
|
@ -84,12 +89,13 @@ static const char * const omen_thermal_profile_force_v0_boards[] = {
|
||||||
* "balanced" when reaching zero.
|
* "balanced" when reaching zero.
|
||||||
*/
|
*/
|
||||||
static const char * const omen_timed_thermal_profile_boards[] = {
|
static const char * const omen_timed_thermal_profile_boards[] = {
|
||||||
"8BAD", "8A42", "8A15"
|
"8A15", "8A42",
|
||||||
|
"8BAD",
|
||||||
};
|
};
|
||||||
|
|
||||||
/* DMI Board names of Victus 16-d1xxx laptops */
|
/* DMI Board names of Victus 16-d1xxx laptops */
|
||||||
static const char * const victus_thermal_profile_boards[] = {
|
static const char * const victus_thermal_profile_boards[] = {
|
||||||
"8A25"
|
"8A25",
|
||||||
};
|
};
|
||||||
|
|
||||||
/* DMI Board names of Victus 16-r and Victus 16-s laptops */
|
/* DMI Board names of Victus 16-r and Victus 16-s laptops */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue