diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-06-16 16:27:59 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-06-19 01:11:41 +0200 |
commit | 358fefe78e8b5602bc9a790647674f4645d9c8ef (patch) | |
tree | 11c9fa97b0a5da5cf18ff7649134070c9c0cc8a3 | |
parent | 62c4aa1a8d9ec3e7e9391ca46f8abf040499544e (diff) | |
download | linux-358fefe78e8b5602bc9a790647674f4645d9c8ef.tar.gz linux-358fefe78e8b5602bc9a790647674f4645d9c8ef.tar.bz2 linux-358fefe78e8b5602bc9a790647674f4645d9c8ef.zip |
compal-laptop: Port to new backlight interface selection API
Port the backlight selection logic to the new backlight interface
selection API.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/platform/x86/compal-laptop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/compal-laptop.c b/drivers/platform/x86/compal-laptop.c index b4e94471f3d5..f2706d27adff 100644 --- a/drivers/platform/x86/compal-laptop.c +++ b/drivers/platform/x86/compal-laptop.c @@ -82,7 +82,7 @@ #include <linux/hwmon-sysfs.h> #include <linux/power_supply.h> #include <linux/fb.h> - +#include <acpi/video.h> /* ======= */ /* Defines */ @@ -959,7 +959,7 @@ static int __init compal_init(void) return -ENODEV; } - if (!acpi_video_backlight_support()) { + if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { struct backlight_properties props; memset(&props, 0, sizeof(struct backlight_properties)); props.type = BACKLIGHT_PLATFORM; |