diff options
author | Henrique de Moraes Holschuh <hmh@hmh.eng.br> | 2009-05-30 12:25:09 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-06-17 22:49:05 -0400 |
commit | 8bf3d4c535c2b9689c2979b281c24e9f59c2f4ad (patch) | |
tree | 0c98d30fd93a4a4ae2fdd10ef2e49a4bbbf6ddf2 /drivers/platform | |
parent | f21179a47ff8d1046a61c1cf5920244997a4a7bb (diff) |
thinkpad-acpi: silence bogus warning when ACPI video is disabled
Make use of acpi_video_backlight_support() also in hotkey_init, to make
sure this doesn't happen:
thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness
control, supported by the ACPI video driver
thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
thinkpad_acpi: Standard ACPI backlight interface not available,
thinkpad_acpi native brightness control enabled
thinkpad_acpi: detected a 16-level brightness capable ThinkPad
Note that this is purely cosmetic, there is absolutely _no_ change in
behaviour. Those events are sometimes enabled at runtime by userspace, but
the driver never enables them by itself unless someone messed with the
default keymaps.
Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Reported-by: Jochen Schulz <jrschulz@well-adjusted.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/thinkpad_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index 06c7c03c8f2f..5a22a064222c 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c | |||
@@ -2655,7 +2655,7 @@ static int __init hotkey_init(struct ibm_init_struct *iibm) | |||
2655 | /* update bright_acpimode... */ | 2655 | /* update bright_acpimode... */ |
2656 | tpacpi_check_std_acpi_brightness_support(); | 2656 | tpacpi_check_std_acpi_brightness_support(); |
2657 | 2657 | ||
2658 | if (tp_features.bright_acpimode) { | 2658 | if (tp_features.bright_acpimode && acpi_video_backlight_support()) { |
2659 | printk(TPACPI_INFO | 2659 | printk(TPACPI_INFO |
2660 | "This ThinkPad has standard ACPI backlight " | 2660 | "This ThinkPad has standard ACPI backlight " |
2661 | "brightness control, supported by the ACPI " | 2661 | "brightness control, supported by the ACPI " |