diff options
author | Kunwu Chan <[email protected]> | 2024-08-27 17:51:23 +0800 |
---|---|---|
committer | Dave Jiang <[email protected]> | 2024-09-03 14:40:41 -0700 |
commit | 1c1d348b08ab7c106dd96bafb120f0888827174b (patch) | |
tree | 1e776b94ca41b4ea217477c643b149875f08c880 | |
parent | 1f9651bfc51326fbed10df820c4e80f885f921d8 (diff) |
tools/testing/cxl: Use dev_is_platform()
Use dev_is_platform() instead of checking bus type directly.
Signed-off-by: Kunwu Chan <[email protected]>
Reviewed-by: Jonathan Cameron <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Dave Jiang <[email protected]>
-rw-r--r-- | tools/testing/cxl/mock_acpi.c | 2 |
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); |