Re: [PATCH] toshiba_acpi: fingers off backlight if video.ko is serving this functionality

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This patch does what it is supposed to do, but it isn't clear
if that is a step forward.

I have satellite pro (original centrino about 4 years old)
where toshiba-acpi exports 8 brightness levels,
and acpi exports just 3 (min, 40%, max)

so when i apply this patch, i get fewer brightness levels.
I prefer to have all 8 brightness levels.

-Len

On Sat, 8 Nov 2008, Andrey Borzenkov wrote:

> Subject: [PATCH] toshiba_acpi: fingers off backlight if video.ko is serving this functionality
> From: Andrey Borzenkov <arvidjaar@xxxxxxx>
> 
> Signed-off-by: Andrey Borzenkov <arvidjaar@xxxxxxx>
> 
> ---
> 
> This completes backlight series; toshiba_acpi was missing.
> 
>  drivers/acpi/toshiba_acpi.c |   19 ++++++++++---------
>  1 files changed, 10 insertions(+), 9 deletions(-)
> 
> 
> diff --git a/drivers/acpi/toshiba_acpi.c b/drivers/acpi/toshiba_acpi.c
> index a7db0c2..c140709 100644
> --- a/drivers/acpi/toshiba_acpi.c
> +++ b/drivers/acpi/toshiba_acpi.c
> @@ -780,19 +780,20 @@ static int __init toshiba_acpi_init(void)
>  		}
>  	}
>  
> -	toshiba_backlight_device = backlight_device_register("toshiba",
> +	if (!acpi_video_backlight_support()) {
> +		toshiba_backlight_device = backlight_device_register("toshiba",
>  						&toshiba_acpi.p_dev->dev,
>  						NULL,
>  						&toshiba_backlight_data);
> -        if (IS_ERR(toshiba_backlight_device)) {
> -		ret = PTR_ERR(toshiba_backlight_device);
> -
> -		printk(KERN_ERR "Could not register toshiba backlight device\n");
> -		toshiba_backlight_device = NULL;
> -		toshiba_acpi_exit();
> -		return ret;
> +		if (IS_ERR(toshiba_backlight_device)) {
> +			ret = PTR_ERR(toshiba_backlight_device);
> +			printk(KERN_ERR "Could not register toshiba backlight device\n");
> +			toshiba_backlight_device = NULL;
> +			toshiba_acpi_exit();
> +			return ret;
> +		}
> +		toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
>  	}
> -        toshiba_backlight_device->props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1;
>  
>  	/* Register rfkill switch for Bluetooth */
>  	if (hci_get_bt_present(&bt_present) == HCI_SUCCESS && bt_present) {
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux IBM ACPI]     [Linux Power Management]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]     [Linux Resources]

  Powered by Linux