Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/x86: asus-wmi: rename ASUS_WMI_DEVID_PPT_FPPT

Maintain power-related WMI macros naming consistency:
rename ASUS_WMI_DEVID_PPT_FPPT to ASUS_WMI_DEVID_PPT_PL3_FPPT.

Link: https://lore.kernel.org/all/cad7b458-5a7a-4975-94a1-d0c74f6f3de5@oracle.com/

Suggested-by: ALOK TIWARI <alok.a.tiwari@oracle.com>
Signed-off-by: Denis Benato <denis.benato@linux.dev>
Link: https://.../
Link: https://patch.msgid.link/20251102215319.3126879-9-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>

authored by

Denis Benato and committed by
Ilpo Järvinen
d849a9f2 c683651b

+3 -3
+2 -2
drivers/platform/x86/asus-wmi.c
··· 1218 1218 if (value < PPT_TOTAL_MIN || value > PPT_TOTAL_MAX) 1219 1219 return -EINVAL; 1220 1220 1221 - err = asus_wmi_set_devstate(ASUS_WMI_DEVID_PPT_FPPT, value, &result); 1221 + err = asus_wmi_set_devstate(ASUS_WMI_DEVID_PPT_PL3_FPPT, value, &result); 1222 1222 if (err) { 1223 1223 pr_warn("Failed to set ppt_fppt: %d\n", err); 1224 1224 return err; ··· 4602 4602 else if (attr == &dev_attr_ppt_pl1_spl.attr) 4603 4603 devid = ASUS_WMI_DEVID_PPT_PL1_SPL; 4604 4604 else if (attr == &dev_attr_ppt_fppt.attr) 4605 - devid = ASUS_WMI_DEVID_PPT_FPPT; 4605 + devid = ASUS_WMI_DEVID_PPT_PL3_FPPT; 4606 4606 else if (attr == &dev_attr_ppt_apu_sppt.attr) 4607 4607 devid = ASUS_WMI_DEVID_PPT_APU_SPPT; 4608 4608 else if (attr == &dev_attr_ppt_platform_sppt.attr)
+1 -1
include/linux/platform_data/x86/asus-wmi.h
··· 107 107 #define ASUS_WMI_DEVID_PPT_PL1_SPL 0x001200A3 108 108 #define ASUS_WMI_DEVID_PPT_APU_SPPT 0x001200B0 109 109 #define ASUS_WMI_DEVID_PPT_PLAT_SPPT 0x001200B1 110 - #define ASUS_WMI_DEVID_PPT_FPPT 0x001200C1 110 + #define ASUS_WMI_DEVID_PPT_PL3_FPPT 0x001200C1 111 111 #define ASUS_WMI_DEVID_NV_DYN_BOOST 0x001200C0 112 112 #define ASUS_WMI_DEVID_NV_THERM_TARGET 0x001200C2 113 113