All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] thinkpad_acpi: don't yell on unsupported brightness interfaces
@ 2015-10-21 10:46 David Herrmann
  2015-10-21 14:33 ` Henrique de Moraes Holschuh
  0 siblings, 1 reply; 9+ messages in thread
From: David Herrmann @ 2015-10-21 10:46 UTC (permalink / raw)
  To: platform-driver-x86
  Cc: Henrique de Moraes Holschuh, Darren Hart, ibm-acpi-devel,
	linux-kernel, David Herrmann

The thinkpad_acpi driver currently emits error messages on unsupported
brightness interfaces, giving the impression that someone will implement
those. However, this error is spit out on nearly every thinkpad in
production since 2 years now. Furthermore, the backlight interfaces on
those devices are supported by the i915 driver just fine.

Downgrade the error message to a normal pr_info() and stop telling people
to report it to IBM.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
---
 drivers/platform/x86/thinkpad_acpi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c
index 131dd74..0bed473 100644
--- a/drivers/platform/x86/thinkpad_acpi.c
+++ b/drivers/platform/x86/thinkpad_acpi.c
@@ -6459,8 +6459,7 @@ static void __init tpacpi_detect_brightness_capabilities(void)
 		pr_info("detected a 8-level brightness capable ThinkPad\n");
 		break;
 	default:
-		pr_err("Unsupported brightness interface, "
-		       "please contact %s\n", TPACPI_MAIL);
+		pr_info("Unsupported brightness interface\n");
 		tp_features.bright_unkfw = 1;
 		bright_maxlvl = b - 1;
 	}
-- 
2.6.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-01-09 17:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-21 10:46 [PATCH] thinkpad_acpi: don't yell on unsupported brightness interfaces David Herrmann
2015-10-21 14:33 ` Henrique de Moraes Holschuh
2015-10-21 14:44   ` Darren Hart
2015-11-06 14:19     ` David Herrmann
2015-11-06 17:57       ` Darren Hart
2016-01-07  1:03         ` Eric Curtin
2016-01-08 11:55           ` David Herrmann
2016-01-08 17:26             ` Eric Curtin
2016-01-09 17:32               ` Henrique de Moraes Holschuh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.