X86 platform drivers
 help / color / mirror / Atom feed
* [PATCH v2] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora
@ 2025-11-16 18:53 Anthony Wong
  2025-11-16 19:01 ` Kurt Borja
  2025-11-18  8:10 ` Ilpo Järvinen
  0 siblings, 2 replies; 3+ messages in thread
From: Anthony Wong @ 2025-11-16 18:53 UTC (permalink / raw)
  To: platform-driver-x86, kuurtb; +Cc: hansg, ilpo.jarvinen, Dell.Client.Kernel

From: Anthony Wong <anthony.wong@ubuntu.com>

Add AWCC support to Alienware 16 Aurora

Cc: stable@vger.kernel.org
Signed-off-by: Anthony Wong <anthony.wong@ubuntu.com>
---
v2:
* Drop "AC16250" from product name
* use g_series_quirks for G-mode
v1: https://lore.kernel.org/all/20251007084734.25347-1-anthony.wong@canonical.com/
---
 drivers/platform/x86/dell/alienware-wmi-wmax.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
index f417dcc9af35..a1ff63d8dc12 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 16 Aurora",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware 16 Aurora"),
+		},
+		.driver_data = &g_series_quirks,
+	},
 	{
 		.ident = "Alienware Area-51m",
 		.matches = {
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora
  2025-11-16 18:53 [PATCH v2] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora Anthony Wong
@ 2025-11-16 19:01 ` Kurt Borja
  2025-11-18  8:10 ` Ilpo Järvinen
  1 sibling, 0 replies; 3+ messages in thread
From: Kurt Borja @ 2025-11-16 19:01 UTC (permalink / raw)
  To: Anthony Wong, platform-driver-x86, kuurtb
  Cc: hansg, ilpo.jarvinen, Dell.Client.Kernel

On Sun Nov 16, 2025 at 1:53 PM -05, Anthony Wong wrote:
> From: Anthony Wong <anthony.wong@ubuntu.com>
>
> Add AWCC support to Alienware 16 Aurora
>
> Cc: stable@vger.kernel.org
> Signed-off-by: Anthony Wong <anthony.wong@ubuntu.com>

Reviewed-by: Kurt Borja <kuurtb@gmail.com>

> ---
> v2:
> * Drop "AC16250" from product name
> * use g_series_quirks for G-mode
> v1: https://lore.kernel.org/all/20251007084734.25347-1-anthony.wong@canonical.com/
> ---
>  drivers/platform/x86/dell/alienware-wmi-wmax.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
> index f417dcc9af35..a1ff63d8dc12 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 16 Aurora",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware 16 Aurora"),
> +		},
> +		.driver_data = &g_series_quirks,
> +	},
>  	{
>  		.ident = "Alienware Area-51m",
>  		.matches = {


-- 
 ~ Kurt


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora
  2025-11-16 18:53 [PATCH v2] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora Anthony Wong
  2025-11-16 19:01 ` Kurt Borja
@ 2025-11-18  8:10 ` Ilpo Järvinen
  1 sibling, 0 replies; 3+ messages in thread
From: Ilpo Järvinen @ 2025-11-18  8:10 UTC (permalink / raw)
  To: platform-driver-x86, kuurtb, Anthony Wong; +Cc: hansg, Dell.Client.Kernel

On Mon, 17 Nov 2025 02:53:11 +0800, Anthony Wong wrote:

> Add AWCC support to Alienware 16 Aurora
> 
> 


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: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora
      commit: 6f91ad24c6639220f2edb0ad8edb199b43cc3b22

--
 i.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-11-18  8:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-16 18:53 [PATCH v2] platform/x86: alienware-wmi-wmax: Add AWCC support to Alienware 16 Aurora Anthony Wong
2025-11-16 19:01 ` Kurt Borja
2025-11-18  8:10 ` 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