Re: [PATCH 3/3] platform/x86: asus-armoury: add support for FX608JPR
From: Denis Benato
Date: Fri Jun 12 2026 - 08:09:08 EST
On 6/12/26 14:02, Ilpo Järvinen wrote:
> On Fri, 12 Jun 2026, Denis Benato wrote:
>
>> Add TDP data for laptop model FX608JPR.
>>
>> Signed-off-by: Denis Benato <denis.benato@xxxxxxxxx>
>> ---
>> drivers/platform/x86/asus-armoury.h | 28 ++++++++++++++++++++++++++++
>> 1 file changed, 28 insertions(+)
>>
>> diff --git a/drivers/platform/x86/asus-armoury.h b/drivers/platform/x86/asus-armoury.h
>> index 39edc0114b11..9370acc755f4 100644
>> --- a/drivers/platform/x86/asus-armoury.h
>> +++ b/drivers/platform/x86/asus-armoury.h
>> @@ -909,6 +909,34 @@ static const struct dmi_system_id power_limits[] = {
>> .requires_fan_curve = true,
>> },
>> },
>> + {
>> + .matches = {
>> + DMI_MATCH(DMI_BOARD_NAME, "FX608JPR"),
>> .matches = {
>> DMI_MATCH(DMI_BOARD_NAME, "FX607VU"),
> Shouldn't FX608JPR come after FX607VU?
Yes, absolutely.
> You might have to violate the strict alphanumeric order in some cases
> where the name is a strict subset of the other as the first matching one
> is picked from the array. But for other cases, keeping things in order
> will be easier.
>
Fully agree. Will send v2 shortly.