summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKunwu Chan <chentao@kylinos.cn>2024-08-27 17:51:23 +0800
committerDave Jiang <dave.jiang@intel.com>2024-09-03 14:40:41 -0700
commit1c1d348b08ab7c106dd96bafb120f0888827174b (patch)
tree1e776b94ca41b4ea217477c643b149875f08c880
parent1f9651bfc51326fbed10df820c4e80f885f921d8 (diff)
downloadlinux-stable-1c1d348b08ab7c106dd96bafb120f0888827174b.tar.gz
linux-stable-1c1d348b08ab7c106dd96bafb120f0888827174b.tar.bz2
linux-stable-1c1d348b08ab7c106dd96bafb120f0888827174b.zip
tools/testing/cxl: Use dev_is_platform()
Use dev_is_platform() instead of checking bus type directly. Signed-off-by: Kunwu Chan <chentao@kylinos.cn> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Link: https://patch.msgid.link/20240827095123.168696-1-kunwu.chan@linux.dev Signed-off-by: Dave Jiang <dave.jiang@intel.com>
-rw-r--r--tools/testing/cxl/mock_acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/cxl/mock_acpi.c b/tools/testing/cxl/mock_acpi.c
index 55813de26d46..8da94378ccec 100644
--- a/tools/testing/cxl/mock_acpi.c
+++ b/tools/testing/cxl/mock_acpi.c
@@ -18,7 +18,7 @@ struct acpi_device *to_cxl_host_bridge(struct device *host, struct device *dev)
goto out;
}
- if (dev->bus == &platform_bus_type)
+ if (dev_is_platform(dev))
goto out;
adev = to_acpi_device(dev);