diff mbox series

[v1,3/3] ACPI: video: Switch to use acpi_get_first_match_physical_node()

Message ID 20230123171006.58274-3-andriy.shevchenko@linux.intel.com
State New
Headers show
Series [v1,1/3] ACPI: video: Fix refcounting in apple_gmux_backlight_present() | expand

Commit Message

Andy Shevchenko Jan. 23, 2023, 5:10 p.m. UTC
Refactor the code to use acpi_get_first_match_physical_node(),
which is currently open coded.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/acpi/video_detect.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)
diff mbox series

Patch

diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
index 0ccde0d4c527..b23773347e67 100644
--- a/drivers/acpi/video_detect.c
+++ b/drivers/acpi/video_detect.c
@@ -112,16 +112,10 @@  static bool nvidia_wmi_ec_supported(void)
 
 static bool apple_gmux_backlight_present(void)
 {
-	struct acpi_device *adev;
 	struct device *dev;
 	bool ret;
 
-	adev = acpi_dev_get_first_match_dev(GMUX_ACPI_HID, NULL, -1);
-	if (!adev)
-		return false;
-
-	dev = get_device(acpi_get_first_physical_node(adev));
-	acpi_dev_put(adev);
+	dev = acpi_get_first_match_physical_node(GMUX_ACPI_HID, NULL, -1);
 	if (!dev)
 		return false;