* [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
@ 2025-07-10 3:11 Kurt Borja
2025-07-10 5:08 ` Kurt Borja
2025-07-11 16:26 ` Ilpo Järvinen
0 siblings, 2 replies; 3+ messages in thread
From: Kurt Borja @ 2025-07-10 3:11 UTC (permalink / raw)
To: Hans de Goede, Ilpo Järvinen
Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, Kurt Borja
Add support to Alienware Area-51m and Alienware m15 R5.
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
---
drivers/platform/x86/dell/alienware-wmi-wmax.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
index 20ec122a9fe0571a1ecd2ccf630615564ab30481..67e5dd0f140aa73ac73ea99fbe081a6b08e520ec 100644
--- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
+++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
@@ -89,6 +89,14 @@ static struct awcc_quirks generic_quirks = {
static struct awcc_quirks empty_quirks;
static const struct dmi_system_id awcc_dmi_table[] __initconst = {
+ {
+ .ident = "Alienware Area-51m",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "Alienware Area-51m"),
+ },
+ .driver_data = &generic_quirks,
+ },
{
.ident = "Alienware Area-51m R2",
.matches = {
@@ -97,6 +105,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
},
.driver_data = &generic_quirks,
},
+ {
+ .ident = "Alienware m15 R5",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R5"),
+ },
+ .driver_data = &generic_quirks,
+ },
{
.ident = "Alienware m15 R7",
.matches = {
---
base-commit: 4f30f946f27b7f044cf8f3f1f353dee1dcd3517a
change-id: 20250509-m15_r5-7ade3650ca48
--
~ Kurt
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
2025-07-10 3:11 [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops Kurt Borja
@ 2025-07-10 5:08 ` Kurt Borja
2025-07-11 16:26 ` Ilpo Järvinen
1 sibling, 0 replies; 3+ messages in thread
From: Kurt Borja @ 2025-07-10 5:08 UTC (permalink / raw)
To: Kurt Borja, Hans de Goede, Ilpo Järvinen
Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel,
Andreas Westman Dorcsak
On Thu Jul 10, 2025 at 12:11 AM -03, Kurt Borja wrote:
> Add support to Alienware Area-51m and Alienware m15 R5.
>
> Signed-off-by: Kurt Borja <kuurtb@gmail.com>
For the Alienware Area-51m model:
Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com>
> ---
> drivers/platform/x86/dell/alienware-wmi-wmax.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
> index 20ec122a9fe0571a1ecd2ccf630615564ab30481..67e5dd0f140aa73ac73ea99fbe081a6b08e520ec 100644
> --- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
> +++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
> @@ -89,6 +89,14 @@ static struct awcc_quirks generic_quirks = {
> static struct awcc_quirks empty_quirks;
>
> static const struct dmi_system_id awcc_dmi_table[] __initconst = {
> + {
> + .ident = "Alienware Area-51m",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "Alienware Area-51m"),
> + },
> + .driver_data = &generic_quirks,
> + },
> {
> .ident = "Alienware Area-51m R2",
> .matches = {
> @@ -97,6 +105,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
> },
> .driver_data = &generic_quirks,
> },
> + {
> + .ident = "Alienware m15 R5",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R5"),
> + },
> + .driver_data = &generic_quirks,
> + },
> {
> .ident = "Alienware m15 R7",
> .matches = {
>
> ---
> base-commit: 4f30f946f27b7f044cf8f3f1f353dee1dcd3517a
> change-id: 20250509-m15_r5-7ade3650ca48
--
~ Kurt
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
2025-07-10 3:11 [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops Kurt Borja
2025-07-10 5:08 ` Kurt Borja
@ 2025-07-11 16:26 ` Ilpo Järvinen
1 sibling, 0 replies; 3+ messages in thread
From: Ilpo Järvinen @ 2025-07-11 16:26 UTC (permalink / raw)
To: Hans de Goede, Kurt Borja
Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel
On Thu, 10 Jul 2025 00:11:12 -0300, Kurt Borja wrote:
> Add support to Alienware Area-51m and Alienware m15 R5.
>
>
Thank you for your contribution, it has been applied to my local
review-ilpo-fixes branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my
local branch there, which might take a while.
The list of commits applied:
[1/1] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
commit: dbfb567f4ae86f4acc4644984ec5b59086060b99
--
i.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-07-11 16:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-10 3:11 [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops Kurt Borja
2025-07-10 5:08 ` Kurt Borja
2025-07-11 16:26 ` Ilpo Järvinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®