Commit 3096ab5b authored by Stephen Kitt's avatar Stephen Kitt Committed by Hans de Goede
Browse files

platform/x86: apple-gmux: Use backlight helper



Instead of retrieving the backlight brightness in struct
backlight_properties manually, and then checking whether the backlight
should be on at all, use backlight_get_brightness() which does all
this and insulates this from future changes.

Signed-off-by: default avatarStephen Kitt <steve@sk2.org>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Mark Gross <markgross@kernel.org>
Cc: platform-driver-x86@vger.kernel.org
Reviewed-by: default avatarDaniel Thompson <daniel.thompson@linaro.org>
Link: https://lore.kernel.org/r/20220607184635.1127913-3-steve@sk2.org


Reviewed-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
parent 441ffc52
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -291,10 +291,7 @@ static int gmux_get_brightness(struct backlight_device *bd)
static int gmux_update_status(struct backlight_device *bd)
static int gmux_update_status(struct backlight_device *bd)
{
{
	struct apple_gmux_data *gmux_data = bl_get_data(bd);
	struct apple_gmux_data *gmux_data = bl_get_data(bd);
	u32 brightness = bd->props.brightness;
	u32 brightness = backlight_get_brightness(bd);

	if (bd->props.state & BL_CORE_SUSPENDED)
		return 0;


	gmux_write32(gmux_data, GMUX_PORT_BRIGHTNESS, brightness);
	gmux_write32(gmux_data, GMUX_PORT_BRIGHTNESS, brightness);