All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Kurt Borja" <kuurtb@gmail.com>
To: "Armin Wolf" <W_Armin@gmx.de>, <platform-driver-x86@vger.kernel.org>
Cc: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
	"Mario Limonciello" <mario.limonciello@amd.com>,
	"Hans de Goede" <hdegoede@redhat.com>,
	Dell.Client.Kernel@dell.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 00/14] platform/x86: alienware-wmi driver rework
Date: Sun, 19 Jan 2025 11:53:10 -0500	[thread overview]
Message-ID: <D767FM2W6WD0.1HEH1GILFN6FA@gmail.com> (raw)
In-Reply-To: <317cb392-019c-45d1-b29f-62c378a1daed@gmx.de>

On Sat Jan 18, 2025 at 7:09 PM -05, Armin Wolf wrote:
> Am 17.01.25 um 09:13 schrieb Kurt Borja:
>
> > Hello!
> >
> > I rebased these series on top of review-ilpo-next branch to pick up
> > platform_profile latest changes.
>
> So far i am quite pleased with the current state of the patch series. The issues
> i found a relatively minor. I am already looking forward to reviewing the (hopefully
> final) v5 patch series :).

Hi Armin,

Hopefully.

Thank you so much for your work on this :)

>
> Besides that: Did you test this changes on a real Alienware machine?

Yes, this was tested on an Alienware x15 R1. I tested all quirks
including those that are not supported by my machine, of course WMAX
would return err on those.

~ Kurt

>
> Thanks,
> Armin Wolf
>
> > ~ Kurt
> > ---
> > v3->v4:
> >    - First 6 patches are already applied so they are not included
> >
> > [01/14]
> >    - Reordered some lines in alienfx_probe() for aesthetic purposes
> >
> > [10/14]
> >    - Removed pr_fmt from header file
> >
> > [11/14]
> >    - Copy pr_fmt to each linked file
> >
> > v3: https://lore.kernel.org/platform-driver-x86/20250105153019.19206-2-kuurtb@gmail.com/
> >
> > Kurt Borja (14):
> >    platform/x86: alienware-wmi: Add a state container for LED control
> >      feature
> >    platform/x86: alienware-wmi: Add WMI Drivers
> >    platform/x86: alienware-wmi: Add a state container for thermal control
> >      methods
> >    platform/x86: alienware-wmi: Refactor LED control methods
> >    platform/x86: alienware-wmi: Refactor hdmi, amplifier, deepslp methods
> >    platform/x86: alienware-wmi: Refactor thermal control methods
> >    platform/x86: alienware-wmi: Split DMI table
> >    MAINTAINERS: Update ALIENWARE WMI DRIVER entry
> >    platform/x86: Rename alienware-wmi.c
> >    platform/x86: Add alienware-wmi.h
> >    platform/x86: Split the alienware-wmi driver
> >    platform/x86: dell: Modify Makefile alignment
> >    platform/x86: Update alienware-wmi config entries
> >    platform/x86: alienware-wmi: Update header and module information
> >
> >   MAINTAINERS                                   |    4 +-
> >   drivers/platform/x86/dell/Kconfig             |   30 +-
> >   drivers/platform/x86/dell/Makefile            |   45 +-
> >   .../platform/x86/dell/alienware-wmi-base.c    |  488 +++++++
> >   .../platform/x86/dell/alienware-wmi-legacy.c  |  100 ++
> >   .../platform/x86/dell/alienware-wmi-wmax.c    |  773 +++++++++++
> >   drivers/platform/x86/dell/alienware-wmi.c     | 1235 -----------------
> >   drivers/platform/x86/dell/alienware-wmi.h     |  102 ++
> >   8 files changed, 1515 insertions(+), 1262 deletions(-)
> >   create mode 100644 drivers/platform/x86/dell/alienware-wmi-base.c
> >   create mode 100644 drivers/platform/x86/dell/alienware-wmi-legacy.c
> >   create mode 100644 drivers/platform/x86/dell/alienware-wmi-wmax.c
> >   delete mode 100644 drivers/platform/x86/dell/alienware-wmi.c
> >   create mode 100644 drivers/platform/x86/dell/alienware-wmi.h
> >
> >
> > base-commit: 81e8e5017f5de3cf28004ae2b628629ef4d43635


      reply	other threads:[~2025-01-19 16:53 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-17  8:13 [PATCH v4 00/14] platform/x86: alienware-wmi driver rework Kurt Borja
2025-01-17  8:13 ` [PATCH v4 01/14] platform/x86: alienware-wmi: Add a state container for LED control feature Kurt Borja
2025-01-18 23:34   ` Armin Wolf
2025-01-17  8:13 ` [PATCH v4 02/14] platform/x86: alienware-wmi: Add WMI Drivers Kurt Borja
2025-01-18 23:48   ` Armin Wolf
2025-01-19 16:47     ` Kurt Borja
2025-01-17  8:13 ` [PATCH v4 03/14] platform/x86: alienware-wmi: Add a state container for thermal control methods Kurt Borja
2025-01-17  8:13 ` [PATCH v4 04/14] platform/x86: alienware-wmi: Refactor LED " Kurt Borja
2025-01-18 23:58   ` Armin Wolf
2025-01-19 16:50     ` Kurt Borja
2025-01-17  8:13 ` [PATCH v4 05/14] platform/x86: alienware-wmi: Refactor hdmi, amplifier, deepslp methods Kurt Borja
2025-01-17  8:13 ` [PATCH v4 06/14] platform/x86: alienware-wmi: Refactor thermal control methods Kurt Borja
2025-01-17  8:13 ` [PATCH v4 07/14] platform/x86: alienware-wmi: Split DMI table Kurt Borja
2025-01-17 17:15   ` Kurt Borja
2025-01-19  0:03   ` Armin Wolf
2025-01-17  8:13 ` [PATCH v4 08/14] MAINTAINERS: Update ALIENWARE WMI DRIVER entry Kurt Borja
2025-01-17  8:13 ` [PATCH v4 09/14] platform/x86: Rename alienware-wmi.c Kurt Borja
2025-01-17  8:13 ` [PATCH v4 10/14] platform/x86: Add alienware-wmi.h Kurt Borja
2025-01-17  8:13 ` [PATCH v4 11/14] platform/x86: Split the alienware-wmi driver Kurt Borja
2025-01-17  8:13 ` [PATCH v4 12/14] platform/x86: dell: Modify Makefile alignment Kurt Borja
2025-01-17  8:13 ` [PATCH v4 13/14] platform/x86: Update alienware-wmi config entries Kurt Borja
2025-01-17  8:13 ` [PATCH v4 14/14] platform/x86: alienware-wmi: Update header and module information Kurt Borja
2025-01-19  0:09 ` [PATCH v4 00/14] platform/x86: alienware-wmi driver rework Armin Wolf
2025-01-19 16:53   ` Kurt Borja [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=D767FM2W6WD0.1HEH1GILFN6FA@gmail.com \
    --to=kuurtb@gmail.com \
    --cc=Dell.Client.Kernel@dell.com \
    --cc=W_Armin@gmx.de \
    --cc=hdegoede@redhat.com \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=platform-driver-x86@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.