From: Hans de Goede <hdegoede@redhat.com>
To: "Barnabás Pőcze" <pobrn@protonmail.com>,
"platform-driver-x86@vger.kernel.org"
<platform-driver-x86@vger.kernel.org>,
"Mark Gross" <mgross@linux.intel.com>,
"Ike Panhc" <ike.pan@canonical.com>
Subject: Re: [PATCH 00/24] platform/x86: ideapad-laptop: cleanup, keyboard backlight and "always on USB charging" control support, reenable touchpad control
Date: Mon, 4 Jan 2021 15:03:54 +0100 [thread overview]
Message-ID: <fa684b4c-4f0e-ec0e-4522-cffb2bba106f@redhat.com> (raw)
In-Reply-To: <YGRDwoO_mZPu_JF1FiT-FpjTx11PTttBt1TuVvH9e7lLxLsv6f0EkQZI6u_GtLGUOQzQPQTZwsYD0Rse7TiUEQiBCio2oVzXiG-OETPf9mA=@protonmail.com>
Hi Barnabás,
On 1/4/21 1:03 PM, Barnabás Pőcze wrote:
> 2020. december 16., szerda 2:39 keltezéssel, Barnabás Pőcze írta:
>
>> This series contains patches that aim to bring more consistency
>> to the code; add keyboard backlight control support; add
>> "always on USB charging" control support.
>> Furthermore, commit 7f363145992cebf4ea760447f1cfdf6f81459683 is reverted
>> since it made it impossible to disable/enable the touchpad via the
>> ideapad-laptop module and on some devices the method implemented in the
>> module works correctly to disable/enable the touchpad.
>>
>> Barnabás Pőcze (24):
>> platform/x86: ideapad-laptop: remove unnecessary dev_set_drvdata()
>> call
>> platform/x86: ideapad-laptop: use appropriately typed variable to
>> store the return value of ACPI methods
>> platform/x86: ideapad-laptop: sort includes lexicographically
>> platform/x86: ideapad-laptop: use sysfs_emit()
>> platform/x86: ideapad-laptop: use for_each_set_bit() helper to
>> simplify event processing
>> platform/x86: ideapad-laptop: use msecs_to_jiffies() helper instead of
>> hand-crafted formula
>> platform/x86: ideapad-laptop: use dev_{err,warn} or appropriate
>> variant to display log messages
>> platform/x86: ideapad-laptop: convert ACPI helpers to return -EIO in
>> case of failure
>> platform/x86: ideapad-laptop: always propagate error codes from device
>> attributes' show() callback
>> platform/x86: ideapad-laptop: misc. device attribute changes
>> platform/x86: ideapad-laptop: group and separate (un)related constants
>> into enums
>> platform/x86: ideapad-laptop: rework and create new ACPI helpers
>> platform/x86: ideapad-laptop: rework is_visible() logic
>> platform/x86: ideapad-laptop: check for Fn-lock support in HALS
>> platform/x86: ideapad-laptop: check for touchpad support in _CFG
>> platform/x86: ideapad-laptop: change 'status' debugfs file format
>> platform/x86: ideapad-laptop: change 'cfg' debugfs file format
>> Revert "platform/x86: ideapad-laptop: Switch touchpad attribute to be
>> RO"
>> platform/x86: ideapad-laptop: fix checkpatch warnings, more consistent
>> style
>> platform/x86: ideapad-laptop: send notification about touchpad state
>> change to sysfs
>> platform/x86: ideapad-laptop: add keyboard backlight control support
>> platform/x86: ideapad-laptop: add "always on USB charging" control
>> support
>> Documentation/ABI: sysfs-platform-ideapad-laptop: update device
>> attribute paths
>> Documentation/ABI: sysfs-platform-ideapad-laptop: conservation_mode
>> and usb_charging
>>
>> .../ABI/testing/sysfs-platform-ideapad-laptop | 26 +-
>> drivers/platform/x86/ideapad-laptop.c | 1047 +++++++++++------
>> 2 files changed, 692 insertions(+), 381 deletions(-)
>>
>> ---
>>
>> 2.29.2
>
> A patch in the series a serious flaw which I have just noticed;
> I will send a new version when the situation about a conflicting
> patch[1] becomes clear.
>
> [1]: https://www.spinics.net/lists/platform-driver-x86/msg24007.html
Thank you for the headsup, I will try to make some time to review v1
of this series, so that you can take any review-remarks which I might
have into account when posting v2 (or add my reviewed-by for patches
for which I have no remark).
May I ask which patch is flawed and what the flaw is ? Then I can skip
that while reviewing. I hope to get around to reviewing v1 (this version)
of this series this Wednesday (but no promises).
Regards,
Hans
next prev parent reply other threads:[~2021-01-04 14:05 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-16 1:39 [PATCH 00/24] platform/x86: ideapad-laptop: cleanup, keyboard backlight and "always on USB charging" control support, reenable touchpad control Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 01/24] platform/x86: ideapad-laptop: remove unnecessary dev_set_drvdata() call Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 02/24] platform/x86: ideapad-laptop: use appropriately typed variable to store the return value of ACPI methods Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 03/24] platform/x86: ideapad-laptop: sort includes lexicographically Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 04/24] platform/x86: ideapad-laptop: use sysfs_emit() Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 05/24] platform/x86: ideapad-laptop: use for_each_set_bit() helper to simplify event processing Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 06/24] platform/x86: ideapad-laptop: use msecs_to_jiffies() helper instead of hand-crafted formula Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 07/24] platform/x86: ideapad-laptop: use dev_{err,warn} or appropriate variant to display log messages Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 08/24] platform/x86: ideapad-laptop: convert ACPI helpers to return -EIO in case of failure Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 09/24] platform/x86: ideapad-laptop: always propagate error codes from device attributes' show() callback Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 10/24] platform/x86: ideapad-laptop: misc. device attribute changes Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 11/24] platform/x86: ideapad-laptop: group and separate (un)related constants into enums Barnabás Pőcze
2020-12-16 1:39 ` [PATCH 12/24] platform/x86: ideapad-laptop: rework and create new ACPI helpers Barnabás Pőcze
2021-01-04 12:03 ` [PATCH 00/24] platform/x86: ideapad-laptop: cleanup, keyboard backlight and "always on USB charging" control support, reenable touchpad control Barnabás Pőcze
2021-01-04 14:03 ` Hans de Goede [this message]
2021-01-04 14:10 ` Barnabás Pőcze
2021-01-06 18:23 ` Hans de Goede
2021-01-06 20:42 ` Barnabás Pőcze
2021-01-06 20:49 ` Barnabás Pőcze
2021-01-06 21:08 ` Hans de Goede
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=fa684b4c-4f0e-ec0e-4522-cffb2bba106f@redhat.com \
--to=hdegoede@redhat.com \
--cc=ike.pan@canonical.com \
--cc=mgross@linux.intel.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=pobrn@protonmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox