diff options
author | Jason Stubbs <jasonbstubbs@gmail.com> | 2011-09-20 12:16:11 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-10-24 10:52:35 -0400 |
commit | bee460be8c691c544e84ed678280ace6153104c6 (patch) | |
tree | dfca717127a7369d99675ee29bef603933b01a8d /drivers/platform | |
parent | 093ed561648d43263c009ea88abab21a31cd4f1d (diff) |
platform: samsung_laptop: fix samsung brightness min/max calculations
The min_brightness value of the sabi_config is incorrectly used in brightness
calculations. For the config where min_brightness = 1 and max_brightness = 8,
the user visible range should be 0 to 7 with hardware being set in the range
of 1 to 8. What is actually happening is that the user visible range is 0 to
8 with hardware being set in the range of -1 to 7.
This patch fixes the above issue as well as a miscalculation that would occur
in the case of min_brightness > 1.
Signed-off-by: Jason Stubbs <jasonbstubbs@gmail.com>
Cc: stable <stable@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/samsung-laptop.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/platform/x86/samsung-laptop.c b/drivers/platform/x86/samsung-laptop.c index 37374a5878eb..7eb6733138e6 100644 --- a/drivers/platform/x86/samsung-laptop.c +++ b/drivers/platform/x86/samsung-laptop.c | |||
@@ -370,15 +370,17 @@ static u8 read_brightness(void) | |||
370 | &sretval); | 370 | &sretval); |
371 | if (!retval) { | 371 | if (!retval) { |
372 | user_brightness = sretval.retval[0]; | 372 | user_brightness = sretval.retval[0]; |
373 | if (user_brightness != 0) | 373 | if (user_brightness > sabi_config->min_brightness) |
374 | user_brightness -= sabi_config->min_brightness; | 374 | user_brightness -= sabi_config->min_brightness; |
375 | else | ||
376 | user_brightness = 0; | ||
375 | } | 377 | } |
376 | return user_brightness; | 378 | return user_brightness; |
377 | } | 379 | } |
378 | 380 | ||
379 | static void set_brightness(u8 user_brightness) | 381 | static void set_brightness(u8 user_brightness) |
380 | { | 382 | { |
381 | u8 user_level = user_brightness - sabi_config->min_brightness; | 383 | u8 user_level = user_brightness + sabi_config->min_brightness; |
382 | 384 | ||
383 | sabi_set_command(sabi_config->commands.set_brightness, user_level); | 385 | sabi_set_command(sabi_config->commands.set_brightness, user_level); |
384 | } | 386 | } |
@@ -811,7 +813,8 @@ static int __init samsung_init(void) | |||
811 | /* create a backlight device to talk to this one */ | 813 | /* create a backlight device to talk to this one */ |
812 | memset(&props, 0, sizeof(struct backlight_properties)); | 814 | memset(&props, 0, sizeof(struct backlight_properties)); |
813 | props.type = BACKLIGHT_PLATFORM; | 815 | props.type = BACKLIGHT_PLATFORM; |
814 | props.max_brightness = sabi_config->max_brightness; | 816 | props.max_brightness = sabi_config->max_brightness - |
817 | sabi_config->min_brightness; | ||
815 | backlight_device = backlight_device_register("samsung", &sdev->dev, | 818 | backlight_device = backlight_device_register("samsung", &sdev->dev, |
816 | NULL, &backlight_ops, | 819 | NULL, &backlight_ops, |
817 | &props); | 820 | &props); |