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

Commit f34cd9ca authored by Corentin Chary's avatar Corentin Chary Committed by Matthew Garrett
Browse files

samsung-laptop: don't handle backlight if handled by acpi/video



samsung-laptop is not at all related to ACPI, but since this interface
is not documented at all, and the driver has to use it at load to
understand how it works on the laptop, I think it's a good idea to
disable it if a better solution is available.

Signed-off-by: default avatarCorentin Chary <corentincj@iksaif.net>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent 5dea7a20
Loading
Loading
Loading
Loading
+18 −2
Original line number Original line Diff line number Diff line
@@ -21,6 +21,7 @@
#include <linux/dmi.h>
#include <linux/dmi.h>
#include <linux/platform_device.h>
#include <linux/platform_device.h>
#include <linux/rfkill.h>
#include <linux/rfkill.h>
#include <linux/acpi.h>


/*
/*
 * This driver is needed because a number of Samsung laptops do not hook
 * This driver is needed because a number of Samsung laptops do not hook
@@ -230,6 +231,7 @@ struct samsung_laptop {
	struct backlight_device *backlight_device;
	struct backlight_device *backlight_device;
	struct rfkill *rfk;
	struct rfkill *rfk;


	bool handle_backlight;
	bool has_stepping_quirk;
	bool has_stepping_quirk;
};
};


@@ -616,6 +618,9 @@ static int __init samsung_backlight_init(struct samsung_laptop *samsung)
	struct backlight_device *bd;
	struct backlight_device *bd;
	struct backlight_properties props;
	struct backlight_properties props;


	if (!samsung->handle_backlight)
		return 0;

	memset(&props, 0, sizeof(struct backlight_properties));
	memset(&props, 0, sizeof(struct backlight_properties));
	props.type = BACKLIGHT_PLATFORM;
	props.type = BACKLIGHT_PLATFORM;
	props.max_brightness = samsung->config->max_brightness -
	props.max_brightness = samsung->config->max_brightness -
@@ -698,6 +703,7 @@ static void __init samsung_sabi_selftest(struct samsung_laptop *samsung,
	printk(KERN_DEBUG "ifaceP = 0x%08x\n", ifaceP);
	printk(KERN_DEBUG "ifaceP = 0x%08x\n", ifaceP);
	printk(KERN_DEBUG "sabi_iface = %p\n", samsung->sabi_iface);
	printk(KERN_DEBUG "sabi_iface = %p\n", samsung->sabi_iface);


	if (samsung->handle_backlight)
		test_backlight(samsung);
		test_backlight(samsung);
	test_wireless(samsung);
	test_wireless(samsung);


@@ -771,6 +777,7 @@ static int __init samsung_sabi_init(struct samsung_laptop *samsung)
	}
	}


	/* Check for stepping quirk */
	/* Check for stepping quirk */
	if (samsung->handle_backlight)
		check_for_stepping_quirk(samsung);
		check_for_stepping_quirk(samsung);


exit:
exit:
@@ -1059,6 +1066,15 @@ static int __init samsung_init(void)
		return -ENOMEM;
		return -ENOMEM;


	mutex_init(&samsung->sabi_mutex);
	mutex_init(&samsung->sabi_mutex);
	samsung->handle_backlight = true;

#ifdef CONFIG_ACPI
	/* Don't handle backlight here if the acpi video already handle it */
	if (acpi_video_backlight_support()) {
		pr_info("Backlight controlled by ACPI video driver\n");
		samsung->handle_backlight = false;
	}
#endif


	ret = samsung_platform_init(samsung);
	ret = samsung_platform_init(samsung);
	if (ret)
	if (ret)