Skip to content

Commit 01f31c2

Browse files
NeroReflexij-intel
authored andcommitted
platform/x86: asus-armoury: keep the list ordered alphabetically
Model GA403WM appears after GA403WR breaking the alphabetical order: swap theirs position. Fixes: f5fc407 ("platform/x86: asus-armoury: add support for GA403WM") Signed-off-by: Denis Benato <denis.benato@linux.dev> Link: https://patch.msgid.link/20260116180637.859803-4-denis.benato@linux.dev Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent d40d7f8 commit 01f31c2

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

drivers/platform/x86/asus-armoury.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ static const struct dmi_system_id power_limits[] = {
957957
},
958958
{
959959
.matches = {
960-
DMI_MATCH(DMI_BOARD_NAME, "GA403WR"),
960+
DMI_MATCH(DMI_BOARD_NAME, "GA403WM"),
961961
},
962962
.driver_data = &(struct power_data) {
963963
.ac_data = &(struct power_limits) {
@@ -968,11 +968,11 @@ static const struct dmi_system_id power_limits[] = {
968968
.ppt_pl3_fppt_min = 35,
969969
.ppt_pl3_fppt_max = 80,
970970
.nv_dynamic_boost_min = 0,
971-
.nv_dynamic_boost_max = 25,
971+
.nv_dynamic_boost_max = 15,
972972
.nv_temp_target_min = 75,
973973
.nv_temp_target_max = 87,
974-
.nv_tgp_min = 80,
975-
.nv_tgp_max = 95,
974+
.nv_tgp_min = 55,
975+
.nv_tgp_max = 85,
976976
},
977977
.dc_data = &(struct power_limits) {
978978
.ppt_pl1_spl_min = 15,
@@ -989,7 +989,7 @@ static const struct dmi_system_id power_limits[] = {
989989
},
990990
{
991991
.matches = {
992-
DMI_MATCH(DMI_BOARD_NAME, "GA403WM"),
992+
DMI_MATCH(DMI_BOARD_NAME, "GA403WR"),
993993
},
994994
.driver_data = &(struct power_data) {
995995
.ac_data = &(struct power_limits) {
@@ -1000,11 +1000,11 @@ static const struct dmi_system_id power_limits[] = {
10001000
.ppt_pl3_fppt_min = 35,
10011001
.ppt_pl3_fppt_max = 80,
10021002
.nv_dynamic_boost_min = 0,
1003-
.nv_dynamic_boost_max = 15,
1003+
.nv_dynamic_boost_max = 25,
10041004
.nv_temp_target_min = 75,
10051005
.nv_temp_target_max = 87,
1006-
.nv_tgp_min = 55,
1007-
.nv_tgp_max = 85,
1006+
.nv_tgp_min = 80,
1007+
.nv_tgp_max = 95,
10081008
},
10091009
.dc_data = &(struct power_limits) {
10101010
.ppt_pl1_spl_min = 15,

0 commit comments

Comments
 (0)