All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] ACPI: unify _UID handling as integer
@ 2022-09-08 13:29 ` Andy Shevchenko
  0 siblings, 0 replies; 41+ messages in thread
From: Andy Shevchenko @ 2022-09-08 13:29 UTC (permalink / raw)
  To: Andy Shevchenko, Hans de Goede, Rafael J. Wysocki,
	Ard Biesheuvel, Mark Brown, linux-acpi, linux-kernel, linux-efi,
	linux-i2c, linux-arm-msm, linux-arm-kernel, linux-spi, devel
  Cc: Rafael J. Wysocki, Len Brown, Elie Morisse, Nehal Shah,
	Shyam Sundar S K, Khalil Blaiech, Andy Gross, Bjorn Andersson,
	Konrad Dybcio, Will Deacon, Mark Rutland, Daniel Mack,
	Haojian Zhuang, Robert Jarzmik, Robert Moore, Wolfram Sang

This series is about unification on how we handle ACPI _UID when
it's known to be an integer-in-the-string.

The idea of merging either all via ACPI tree, or taking ACPI stuff
for the v6.1 while the rest may be picked up later on by respective
maintainers separately (currently all depends on Wolfram, other
patches have got the tags from the maintainers).

Partially compile-tested (x86-64).

Changelog v2:
- rebased pxa2xx patch to be applied against current Linux kernel code
- fixed uninitialized variable adev in use (mlxbf)
- dropped unneeded temporary variable adev (qcom_l2_pmu)
- changed type for ret in patch 8 (Hans)
- swapped conditions to check ret == 0 first (Ard)
- added tags (Mark, Ard, Hans)

Andy Shevchenko (8):
  ACPI: utils: Add acpi_dev_uid_to_integer() helper to get _UID as
    integer
  ACPI: LPSS: Refactor _UID handling to use acpi_dev_uid_to_integer()
  ACPI: x86: Refactor _UID handling to use acpi_dev_uid_to_integer()
  i2c: amd-mp2-plat: Refactor _UID handling to use
    acpi_dev_uid_to_integer()
  i2c: mlxbf: Refactor _UID handling to use acpi_dev_uid_to_integer()
  perf: qcom_l2_pmu: Refactor _UID handling to use
    acpi_dev_uid_to_integer()
  spi: pxa2xx: Refactor _UID handling to use acpi_dev_uid_to_integer()
  efi/dev-path-parser: Refactor _UID handling to use
    acpi_dev_uid_to_integer()

 drivers/acpi/acpi_lpss.c               | 15 ++++++-----
 drivers/acpi/utils.c                   | 24 ++++++++++++++++++
 drivers/acpi/x86/utils.c               | 14 ++++++++---
 drivers/firmware/efi/dev-path-parser.c | 10 +++++---
 drivers/i2c/busses/i2c-amd-mp2-plat.c  | 27 +++++++-------------
 drivers/i2c/busses/i2c-mlxbf.c         | 20 +++++----------
 drivers/perf/qcom_l2_pmu.c             |  8 +++---
 drivers/spi/spi-pxa2xx.c               | 35 +++++++-------------------
 include/acpi/acpi_bus.h                |  1 +
 include/linux/acpi.h                   |  5 ++++
 10 files changed, 81 insertions(+), 78 deletions(-)

-- 
2.35.1


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

end of thread, other threads:[~2022-09-13 17:41 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-08 13:29 [PATCH v2 0/8] ACPI: unify _UID handling as integer Andy Shevchenko
2022-09-08 13:29 ` Andy Shevchenko
2022-09-08 13:29 ` [PATCH v2 1/8] ACPI: utils: Add acpi_dev_uid_to_integer() helper to get _UID " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-08 13:29 ` [PATCH v2 2/8] ACPI: LPSS: Refactor _UID handling to use acpi_dev_uid_to_integer() Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-08 13:29 ` [PATCH v2 3/8] ACPI: x86: " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-08 13:29 ` [PATCH v2 4/8] i2c: amd-mp2-plat: " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-12 20:49   ` Wolfram Sang
2022-09-12 20:49     ` Wolfram Sang
2022-09-08 13:29 ` [PATCH v2 5/8] i2c: mlxbf: " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-12 20:49   ` Wolfram Sang
2022-09-12 20:49     ` Wolfram Sang
2022-09-08 13:29 ` [PATCH v2 6/8] perf: qcom_l2_pmu: " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-09  4:40   ` kernel test robot
2022-09-09  4:40     ` [Devel] " kernel test robot
2022-09-09  4:40     ` kernel test robot
2022-09-09  8:44     ` Andy Shevchenko
2022-09-09  8:44       ` Andy Shevchenko
2022-09-08 13:29 ` [PATCH v2 7/8] spi: pxa2xx: " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-13  1:00   ` kernel test robot
2022-09-13  1:00     ` [Devel] " kernel test robot
2022-09-13  1:00     ` kernel test robot
2022-09-08 13:29 ` [PATCH v2 8/8] efi/dev-path-parser: " Andy Shevchenko
2022-09-08 13:29   ` Andy Shevchenko
2022-09-08 13:42   ` Hans de Goede
2022-09-08 13:42     ` Hans de Goede
2022-09-08 13:37 ` [PATCH v2 0/8] ACPI: unify _UID handling as integer Andy Shevchenko
2022-09-08 13:37   ` Andy Shevchenko
2022-09-10 16:32   ` Rafael J. Wysocki
2022-09-10 16:32     ` [Devel] " Rafael J. Wysocki
2022-09-10 16:32     ` Rafael J. Wysocki
2022-09-12 10:39     ` Andy Shevchenko
2022-09-12 10:39       ` Andy Shevchenko
2022-09-13 16:32       ` Andy Shevchenko
2022-09-13 16:32         ` Andy Shevchenko

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.