diff options
author | Maik Broemme <mbroemme@plusserver.de> | 2007-09-14 16:12:34 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-09-18 13:45:20 -0400 |
commit | 7f10cc4e838c2b2d7272031954c56c407569d497 (patch) | |
tree | 3ae46420ac4beee7eb985bc2b5c41e372c33c204 /drivers/acpi/video.c | |
parent | a21101c46ca5b4320e31408853cdcbf7cb1ce4ed (diff) |
ACPI: video: remove dmesg spam
i am actually heavily using the ACPI video extension for my Thinkpad X61
Tablet. I have bound the input events triggered by the brightness
up/down keys to a simple
echo <value> > /sys/class/backlight/acpi_video1/brightness
but everytime the event is triggered and acpi_video_device_lcd_set_level()
is called i got a notificication in my kernel log like:
set_level status: 0
set_level status: 0
set_level status: 0
set_level status: 0
...
Signed-off-by: Maik Broemme <mbroemme@plusserver.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/video.c')
-rw-r--r-- | drivers/acpi/video.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 6cb3e7b12145..d05891f16282 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
@@ -417,7 +417,6 @@ acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level) | |||
417 | arg0.integer.value = level; | 417 | arg0.integer.value = level; |
418 | status = acpi_evaluate_object(device->dev->handle, "_BCM", &args, NULL); | 418 | status = acpi_evaluate_object(device->dev->handle, "_BCM", &args, NULL); |
419 | 419 | ||
420 | printk(KERN_DEBUG "set_level status: %x\n", status); | ||
421 | return status; | 420 | return status; |
422 | } | 421 | } |
423 | 422 | ||