[PATCH 05/22] platform/x86: asus-laptop: Use acpi_video_get_backlight_types()

From: Akihiko Odaki
Date: Mon Oct 24 2022 - 07:40:18 EST


acpi_video_get_backlight_type() is now deprecated.

Signed-off-by: Akihiko Odaki <akihiko.odaki@xxxxxxxxxx>
---
drivers/platform/x86/asus-laptop.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
index 47b2f8bb6fb5..fb7f9e8ca6c4 100644
--- a/drivers/platform/x86/asus-laptop.c
+++ b/drivers/platform/x86/asus-laptop.c
@@ -1854,7 +1854,7 @@ static int asus_acpi_add(struct acpi_device *device)
if (result)
goto fail_platform;

- if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
+ if ((acpi_video_get_backlight_types() & ACPI_BACKLIGHT_VENDOR)) {
result = asus_backlight_init(asus);
if (result)
goto fail_backlight;
--
2.37.3