Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4609d029 authored by Carlos Corbacho's avatar Carlos Corbacho Committed by Len Brown
Browse files

acer-wmi: Fix backlight on AMW0 (V1) laptops



There is some leftover cruft from the old quirk infrastructure that causes
us to be unable to set the backlight on older laptops.

Signed-off-by: default avatarCarlos Corbacho <carlos@strangeworlds.co.uk>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent b0136829
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -428,10 +428,8 @@ static acpi_status AMW0_set_u32(u32 value, u32 cap, struct wmi_interface *iface)
		if (value > max_brightness)
			return AE_BAD_PARAMETER;
		switch (quirks->brightness) {
		case 1:
			return ec_write(0x83, value);
		default:
			return AE_BAD_ADDRESS;
			return ec_write(0x83, value);
			break;
		}
	default: