aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2015-06-16 10:28:09 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2015-06-18 19:12:31 -0400
commit56d5c34a94dfb652592ba654ea236fb133e3686b (patch)
tree82e4060a36996c5b304c0a9bd3b63e92f2b0c2e0 /drivers/platform
parent6c072299b6253d0737db87c7c18328cb376d96bb (diff)
sony-laptop: Port to new backlight interface selection API
Port the backlight selection logic to the new backlight interface selection API. This commit also removes various obsolete pr_xxx messages related to backlight interface selection. These are obsolete because they assume there is only a vendor or acpi backlight driver and no other choice. Also they are not necessary, if the user wants to know which backlight interfaces are registered a simple "ls /sys/class/backlight" suffices. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Mattia Dongili <malattia@linux.it> Acked-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/sony-laptop.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c
index e51c1e753607..aeb80d1c2b07 100644
--- a/drivers/platform/x86/sony-laptop.c
+++ b/drivers/platform/x86/sony-laptop.c
@@ -69,6 +69,7 @@
69#include <linux/miscdevice.h> 69#include <linux/miscdevice.h>
70#endif 70#endif
71#include <asm/uaccess.h> 71#include <asm/uaccess.h>
72#include <acpi/video.h>
72 73
73#define dprintk(fmt, ...) \ 74#define dprintk(fmt, ...) \
74do { \ 75do { \
@@ -3198,12 +3199,8 @@ static int sony_nc_add(struct acpi_device *device)
3198 sony_nc_function_setup(device, sony_pf_device); 3199 sony_nc_function_setup(device, sony_pf_device);
3199 } 3200 }
3200 3201
3201 /* setup input devices and helper fifo */ 3202 if (acpi_video_get_backlight_type() == acpi_backlight_vendor)
3202 if (acpi_video_backlight_support()) {
3203 pr_info("brightness ignored, must be controlled by ACPI video driver\n");
3204 } else {
3205 sony_nc_backlight_setup(); 3203 sony_nc_backlight_setup();
3206 }
3207 3204
3208 /* create sony_pf sysfs attributes related to the SNC device */ 3205 /* create sony_pf sysfs attributes related to the SNC device */
3209 for (item = sony_nc_values; item->name; ++item) { 3206 for (item = sony_nc_values; item->name; ++item) {