lkml.org 
[lkml]   [2022]   [Oct]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 22/22] ACPI: video: Fallback to native backlight
    Date
    Commit 2600bfa3df99 ("ACPI: video: Add acpi_video_backlight_use_native()
    helper") and following commits made native backlight unavailable if
    CONFIG_ACPI_VIDEO is set and the backlight feature of ACPI video is
    unavailable, which broke the backlight functionality on Lenovo ThinkPad
    C13 Yoga Chromebook. Allow to fall back to native backlight in such
    cases.

    Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
    ---
    drivers/acpi/video_detect.c | 4 ++--
    include/acpi/video.h | 2 +-
    2 files changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
    index 88462f2fb8cc..36354241c740 100644
    --- a/drivers/acpi/video_detect.c
    +++ b/drivers/acpi/video_detect.c
    @@ -732,8 +732,8 @@ static int __acpi_video_get_backlight_types(bool native)
    return ACPI_BACKLIGHT_VIDEO;
    }

    - /* No ACPI video (old hw), use vendor specific fw methods. */
    - return ACPI_BACKLIGHT_VENDOR;
    + /* No ACPI video, use native or vendor specific fw methods. */
    + return ACPI_BACKLIGHT_VENDOR | ACPI_BACKLIGHT_NATIVE;
    }

    int acpi_video_get_backlight_types(void)
    diff --git a/include/acpi/video.h b/include/acpi/video.h
    index 5b748fdb606e..656b59acfd1f 100644
    --- a/include/acpi/video.h
    +++ b/include/acpi/video.h
    @@ -76,7 +76,7 @@ static inline int acpi_video_get_edid(struct acpi_device *device, int type,
    }
    static inline int acpi_video_get_backlight_types(void)
    {
    - return ACPI_BACKLIGHT_VENDOR;
    + return ACPI_BACKLIGHT_VENDOR | ACPI_BACKLIGHT_NATIVE;
    }
    static inline bool acpi_video_backlight_use_native(void)
    {
    --
    2.37.3
    \
     
     \ /
      Last update: 2022-10-24 13:56    [W:4.057 / U:0.064 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site