mbox series

[v1,0/3] device property: Introduce device_is_compatible()

Message ID 20230609152507.77649-1-andriy.shevchenko@linux.intel.com
Headers show
Series device property: Introduce device_is_compatible() | expand

Message

Andy Shevchenko June 9, 2023, 3:25 p.m. UTC
Introduce a new helper to tell if device (node) is compatible to the
given string value. This will help some drivers to get rid of unneeded
OF APIs/etc and in may help others to be agnostic to OF/ACPI.

While doing it, I have noticed that ACPI_DEVICE_CLASS() macro seems
defined in unsuitable location. Move it to the better one.

Last patch is an example of what the first two are doing.

The entire series can go, I believe, via ACPI (linux-pm) tree in case
the last patch gets tag from the respective maintainer.

Andy Shevchenko (3):
  ACPI: Move ACPI_DEVICE_CLASS() to mod_devicetable.h
  device property: Implement device_is_compatible()
  ata: ahci_platform: Make code agnostic to OF/ACPI

 drivers/ata/ahci_platform.c     |  6 +++---
 include/linux/acpi.h            | 14 --------------
 include/linux/mod_devicetable.h | 13 +++++++++++++
 include/linux/property.h        |  5 +++++
 4 files changed, 21 insertions(+), 17 deletions(-)