--- v5
+++ v9
@@ -9,7 +9,35 @@
This series was:
- Tested on a device that uses normal i2c-hid.
- Tested on a device that has a Goodix i2c-hid device.
-- NOT tested on any ACPI devices (just compile tested).
+- Tested on an ACPI device, but an earlier version of the series.
+
+I believe the plan is for Benjamin to land the whole series. Will
+said this about the arm64 defconfig change (and provided his Ack):
+> ...there are a few things I really care about
+> in defconfig (e.g. things like page size!), generally speaking we don't
+> need to Ack everything that changes in there.
+>
+> That said, might be worth checking whether arm-soc have any defconfig
+> changes queued in -next so you don't end up with conflicts.
+
+Changes in v9:
+- 120 ms delay => 180 ms delay
+- Local variable in ACPI code "ihid_of" => "ihid_acpi".
+- Squash Benjamin's change for ACPI power on.
+
+Changes in v8:
+- Mark suspend/resume as static as per patches robot.
+
+Changes in v7:
+- Rebase atop commit afdd34c5fa40 ("HID: i2c-hid: show the error ...")
+
+Changes in v6:
+- ACPI probe function should have been "static"
+- Don't export suspend/resume, just export dev_pm_ops from core.
+- Fixed crash in ACPI module (missing init of "client")
+- No need for regulator include in the core.
+- Removed i2c_device_id table from ACPI module.
+- Suspend/resume are no longer exported from the core.
Changes in v5:
- Add shutdown_tail op and use it in ACPI.
@@ -47,13 +75,13 @@
drivers/hid/Makefile | 2 +-
drivers/hid/i2c-hid/Kconfig | 47 +++-
drivers/hid/i2c-hid/Makefile | 6 +-
- drivers/hid/i2c-hid/i2c-hid-acpi.c | 170 ++++++++++++
+ drivers/hid/i2c-hid/i2c-hid-acpi.c | 143 ++++++++++
drivers/hid/i2c-hid/i2c-hid-core.c | 252 +++---------------
- drivers/hid/i2c-hid/i2c-hid-of-goodix.c | 120 +++++++++
- drivers/hid/i2c-hid/i2c-hid-of.c | 147 ++++++++++
- drivers/hid/i2c-hid/i2c-hid.h | 25 ++
+ drivers/hid/i2c-hid/i2c-hid-of-goodix.c | 116 ++++++++
+ drivers/hid/i2c-hid/i2c-hid-of.c | 143 ++++++++++
+ drivers/hid/i2c-hid/i2c-hid.h | 22 ++
include/linux/platform_data/i2c-hid.h | 41 ---
- 11 files changed, 615 insertions(+), 263 deletions(-)
+ 11 files changed, 578 insertions(+), 262 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/goodix,gt7375p.yaml
create mode 100644 drivers/hid/i2c-hid/i2c-hid-acpi.c
create mode 100644 drivers/hid/i2c-hid/i2c-hid-of-goodix.c
@@ -61,5 +89,5 @@
delete mode 100644 include/linux/platform_data/i2c-hid.h
--
-2.29.2.222.g5d2a92d10f8-goog
+2.30.0.284.gd98b1dd5eaa7-goog