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

Commit 53039f22 authored by Matthew Garrett's avatar Matthew Garrett
Browse files

toshiba_acpi: Fix mis-merge



I managed to screw up the various backlight changes and ended up memsetting
the props structure after it had already been populated. This should fix it.

Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent d0e0a477
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1095,9 +1095,9 @@ static int __devinit toshiba_acpi_setup_backlight(struct toshiba_acpi_dev *dev)
	ret = get_tr_backlight_status(dev, &enabled);
	dev->tr_backlight_supported = !ret;

	memset(&props, 0, sizeof(props));
	props.type = BACKLIGHT_PLATFORM;
	props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
	memset(&props, 0, sizeof(props));

	/* adding an extra level and having 0 change to transflective mode */
	if (dev->tr_backlight_supported)