* [PATCH] Remove ambiguous logging for "Unsupported brightness interface" @ 2016-01-27 22:14 Eric Curtin 2016-01-27 23:26 ` Joe Perches 0 siblings, 1 reply; 9+ messages in thread From: Eric Curtin @ 2016-01-27 22:14 UTC (permalink / raw) To: platform-driver-x86 Cc: Kernel development list, Darren Hart, Henrique de Moraes Holschuh, ibm-acpi-devel Message gets logged on machines that are well supported. Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> --- drivers/platform/x86/thinkpad_acpi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index a268a7a..4eb41aa 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -6661,7 +6661,6 @@ static void __init tpacpi_detect_brightness_capabilities(void) pr_info("detected a 8-level brightness capable ThinkPad\n"); break; default: - pr_info("Unsupported brightness interface\n"); tp_features.bright_unkfw = 1; bright_maxlvl = b - 1; } -- 2.5.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-27 22:14 [PATCH] Remove ambiguous logging for "Unsupported brightness interface" Eric Curtin @ 2016-01-27 23:26 ` Joe Perches 2016-01-28 0:36 ` Eric Curtin 2016-01-30 12:20 ` Henrique de Moraes Holschuh 0 siblings, 2 replies; 9+ messages in thread From: Joe Perches @ 2016-01-27 23:26 UTC (permalink / raw) To: Eric Curtin, platform-driver-x86 Cc: Kernel development list, Darren Hart, Henrique de Moraes Holschuh, ibm-acpi-devel On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: > Message gets logged on machines that are well supported. > > Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> > --- > drivers/platform/x86/thinkpad_acpi.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/platform/x86/thinkpad_acpi.c > b/drivers/platform/x86/thinkpad_acpi.c > index a268a7a..4eb41aa 100644 > --- a/drivers/platform/x86/thinkpad_acpi.c > +++ b/drivers/platform/x86/thinkpad_acpi.c > @@ -6661,7 +6661,6 @@ static void __init > tpacpi_detect_brightness_capabilities(void) > pr_info("detected a 8-level brightness capable > ThinkPad\n"); > break; > default: > - pr_info("Unsupported brightness interface\n"); > tp_features.bright_unkfw = 1; > bright_maxlvl = b - 1; > } Perhaps this should be something like this instead: --- drivers/platform/x86/thinkpad_acpi.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index a268a7a..bd12c71 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -6653,18 +6653,16 @@ static void __init tpacpi_detect_brightness_capabilities(void) switch (b) { case 16: bright_maxlvl = 15; - pr_info("detected a 16-level brightness capable ThinkPad\n"); break; case 8: case 0: bright_maxlvl = 7; - pr_info("detected a 8-level brightness capable ThinkPad\n"); break; default: - pr_info("Unsupported brightness interface\n"); tp_features.bright_unkfw = 1; bright_maxlvl = b - 1; } + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); } static int __init brightness_init(struct ibm_init_struct *iibm) ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-27 23:26 ` Joe Perches @ 2016-01-28 0:36 ` Eric Curtin 2016-01-28 0:43 ` Joe Perches 2016-01-30 12:20 ` Henrique de Moraes Holschuh 1 sibling, 1 reply; 9+ messages in thread From: Eric Curtin @ 2016-01-28 0:36 UTC (permalink / raw) To: Joe Perches Cc: platform-driver-x86, Kernel development list, Darren Hart, Henrique de Moraes Holschuh, ibm-acpi-devel On 27 January 2016 at 23:26, Joe Perches <joe@perches.com> wrote: > On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: >> Message gets logged on machines that are well supported. >> >> Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> >> --- >> drivers/platform/x86/thinkpad_acpi.c | 1 - >> 1 file changed, 1 deletion(-) >> >> diff --git a/drivers/platform/x86/thinkpad_acpi.c >> b/drivers/platform/x86/thinkpad_acpi.c >> index a268a7a..4eb41aa 100644 >> --- a/drivers/platform/x86/thinkpad_acpi.c >> +++ b/drivers/platform/x86/thinkpad_acpi.c >> @@ -6661,7 +6661,6 @@ static void __init >> tpacpi_detect_brightness_capabilities(void) >> pr_info("detected a 8-level brightness capable >> ThinkPad\n"); >> break; >> default: >> - pr_info("Unsupported brightness interface\n"); >> tp_features.bright_unkfw = 1; >> bright_maxlvl = b - 1; >> } > > Perhaps this should be something like this instead: > --- > drivers/platform/x86/thinkpad_acpi.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c > index a268a7a..bd12c71 100644 > --- a/drivers/platform/x86/thinkpad_acpi.c > +++ b/drivers/platform/x86/thinkpad_acpi.c > @@ -6653,18 +6653,16 @@ static void __init tpacpi_detect_brightness_capabilities(void) > switch (b) { > case 16: > bright_maxlvl = 15; > - pr_info("detected a 16-level brightness capable ThinkPad\n"); > break; > case 8: > case 0: > bright_maxlvl = 7; > - pr_info("detected a 8-level brightness capable ThinkPad\n"); > break; > default: > - pr_info("Unsupported brightness interface\n"); > tp_features.bright_unkfw = 1; > bright_maxlvl = b - 1; > } > + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); > } > > static int __init brightness_init(struct ibm_init_struct *iibm) Maybe, but the other logging issues kinda mean something. There are many, many reports of people thinking their brightness interface is broken because of this logging message, when in reality the i915 driver supports their devices just fine as previously stated. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-28 0:36 ` Eric Curtin @ 2016-01-28 0:43 ` Joe Perches 2016-01-28 0:52 ` Eric Curtin 0 siblings, 1 reply; 9+ messages in thread From: Joe Perches @ 2016-01-28 0:43 UTC (permalink / raw) To: Eric Curtin Cc: platform-driver-x86, Kernel development list, Darren Hart, Henrique de Moraes Holschuh, ibm-acpi-devel On Thu, 2016-01-28 at 00:36 +0000, Eric Curtin wrote: > On 27 January 2016 at 23:26, Joe Perches <joe@perches.com> wrote: > > On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: > > > Message gets logged on machines that are well supported. [] > > diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c [] > > + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); > > } > > > > static int __init brightness_init(struct ibm_init_struct *iibm) > > Maybe, but the other logging issues kinda mean something. There are > many, many reports of people thinking their brightness interface is > broken because of this logging message, when in reality the i915 driver > supports their devices just fine as previously stated. That's why I suggest changing it to show the number of brightness levels detected on any device. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-28 0:43 ` Joe Perches @ 2016-01-28 0:52 ` Eric Curtin 0 siblings, 0 replies; 9+ messages in thread From: Eric Curtin @ 2016-01-28 0:52 UTC (permalink / raw) To: Joe Perches Cc: platform-driver-x86, Kernel development list, Darren Hart, Henrique de Moraes Holschuh, ibm-acpi-devel On 28 January 2016 at 00:43, Joe Perches <joe@perches.com> wrote: > On Thu, 2016-01-28 at 00:36 +0000, Eric Curtin wrote: >> On 27 January 2016 at 23:26, Joe Perches <joe@perches.com> wrote: >> > On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: >> > > Message gets logged on machines that are well supported. > [] >> > diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c > [] >> > + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); >> > } >> > >> > static int __init brightness_init(struct ibm_init_struct *iibm) >> >> Maybe, but the other logging issues kinda mean something. There are >> many, many reports of people thinking their brightness interface is >> broken because of this logging message, when in reality the i915 driver >> supports their devices just fine as previously stated. > > That's why I suggest changing it to show the number > of brightness levels detected on any device. > Sorry, I missed that line. Looks like a better fix! +1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-27 23:26 ` Joe Perches 2016-01-28 0:36 ` Eric Curtin @ 2016-01-30 12:20 ` Henrique de Moraes Holschuh 2016-01-30 16:55 ` Eric Curtin 1 sibling, 1 reply; 9+ messages in thread From: Henrique de Moraes Holschuh @ 2016-01-30 12:20 UTC (permalink / raw) To: Joe Perches Cc: Eric Curtin, platform-driver-x86, Kernel development list, Darren Hart, ibm-acpi-devel On Wed, 27 Jan 2016, Joe Perches wrote: > On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: > > Message gets logged on machines that are well supported. > > > > Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> > > --- > > drivers/platform/x86/thinkpad_acpi.c | 1 - > > 1 file changed, 1 deletion(-) > > > > diff --git a/drivers/platform/x86/thinkpad_acpi.c > > b/drivers/platform/x86/thinkpad_acpi.c > > index a268a7a..4eb41aa 100644 > > --- a/drivers/platform/x86/thinkpad_acpi.c > > +++ b/drivers/platform/x86/thinkpad_acpi.c > > @@ -6661,7 +6661,6 @@ static void __init > > tpacpi_detect_brightness_capabilities(void) > > pr_info("detected a 8-level brightness capable > > ThinkPad\n"); > > break; > > default: > > - pr_info("Unsupported brightness interface\n"); > > tp_features.bright_unkfw = 1; > > bright_maxlvl = b - 1; > > } > > Perhaps this should be something like this instead: > --- > drivers/platform/x86/thinkpad_acpi.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c > index a268a7a..bd12c71 100644 > --- a/drivers/platform/x86/thinkpad_acpi.c > +++ b/drivers/platform/x86/thinkpad_acpi.c > @@ -6653,18 +6653,16 @@ static void __init tpacpi_detect_brightness_capabilities(void) > switch (b) { > case 16: > bright_maxlvl = 15; > - pr_info("detected a 16-level brightness capable ThinkPad\n"); > break; > case 8: > case 0: > bright_maxlvl = 7; > - pr_info("detected a 8-level brightness capable ThinkPad\n"); > break; > default: > - pr_info("Unsupported brightness interface\n"); > tp_features.bright_unkfw = 1; > bright_maxlvl = b - 1; > } > + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); > } This can be made pr_debug, since we're touching it... -- "One disk to rule them all, One disk to find them. One disk to bring them all and in the darkness grind them. In the Land of Redmond where the shadows lie." -- The Silicon Valley Tarot Henrique Holschuh ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-30 12:20 ` Henrique de Moraes Holschuh @ 2016-01-30 16:55 ` Eric Curtin 2016-01-30 19:49 ` Henrique de Moraes Holschuh 2016-02-07 20:13 ` Darren Hart 0 siblings, 2 replies; 9+ messages in thread From: Eric Curtin @ 2016-01-30 16:55 UTC (permalink / raw) To: Henrique de Moraes Holschuh Cc: Joe Perches, platform-driver-x86, Kernel development list, Darren Hart, ibm-acpi-devel On 30 January 2016 at 12:20, Henrique de Moraes Holschuh <hmh@hmh.eng.br> wrote: > On Wed, 27 Jan 2016, Joe Perches wrote: >> On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: >> > Message gets logged on machines that are well supported. >> > >> > Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> >> > --- >> > drivers/platform/x86/thinkpad_acpi.c | 1 - >> > 1 file changed, 1 deletion(-) >> > >> > diff --git a/drivers/platform/x86/thinkpad_acpi.c >> > b/drivers/platform/x86/thinkpad_acpi.c >> > index a268a7a..4eb41aa 100644 >> > --- a/drivers/platform/x86/thinkpad_acpi.c >> > +++ b/drivers/platform/x86/thinkpad_acpi.c >> > @@ -6661,7 +6661,6 @@ static void __init >> > tpacpi_detect_brightness_capabilities(void) >> > pr_info("detected a 8-level brightness capable >> > ThinkPad\n"); >> > break; >> > default: >> > - pr_info("Unsupported brightness interface\n"); >> > tp_features.bright_unkfw = 1; >> > bright_maxlvl = b - 1; >> > } >> >> Perhaps this should be something like this instead: >> --- >> drivers/platform/x86/thinkpad_acpi.c | 4 +--- >> 1 file changed, 1 insertion(+), 3 deletions(-) >> >> diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c >> index a268a7a..bd12c71 100644 >> --- a/drivers/platform/x86/thinkpad_acpi.c >> +++ b/drivers/platform/x86/thinkpad_acpi.c >> @@ -6653,18 +6653,16 @@ static void __init tpacpi_detect_brightness_capabilities(void) >> switch (b) { >> case 16: >> bright_maxlvl = 15; >> - pr_info("detected a 16-level brightness capable ThinkPad\n"); >> break; >> case 8: >> case 0: >> bright_maxlvl = 7; >> - pr_info("detected a 8-level brightness capable ThinkPad\n"); >> break; >> default: >> - pr_info("Unsupported brightness interface\n"); >> tp_features.bright_unkfw = 1; >> bright_maxlvl = b - 1; >> } >> + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); >> } > > This can be made pr_debug, since we're touching it... > > -- > "One disk to rule them all, One disk to find them. One disk to bring > them all and in the darkness grind them. In the Land of Redmond > where the shadows lie." -- The Silicon Valley Tarot > Henrique Holschuh "Unsupported brightness interface" message gets logged on machines that are well supported. Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> --- drivers/platform/x86/thinkpad_acpi.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index a268a7a..e305ab5 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -6653,18 +6653,16 @@ static void __init tpacpi_detect_brightness_capabilities(void) switch (b) { case 16: bright_maxlvl = 15; - pr_info("detected a 16-level brightness capable ThinkPad\n"); break; case 8: case 0: bright_maxlvl = 7; - pr_info("detected a 8-level brightness capable ThinkPad\n"); break; default: - pr_info("Unsupported brightness interface\n"); tp_features.bright_unkfw = 1; bright_maxlvl = b - 1; } + pr_debug("detected %u brightness levels\n", bright_maxlvl + 1); } static int __init brightness_init(struct ibm_init_struct *iibm) -- 2.5.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-30 16:55 ` Eric Curtin @ 2016-01-30 19:49 ` Henrique de Moraes Holschuh 2016-02-07 20:13 ` Darren Hart 1 sibling, 0 replies; 9+ messages in thread From: Henrique de Moraes Holschuh @ 2016-01-30 19:49 UTC (permalink / raw) To: Eric Curtin Cc: Joe Perches, platform-driver-x86, Kernel development list, Darren Hart, ibm-acpi-devel On Sat, 30 Jan 2016, Eric Curtin wrote: > "Unsupported brightness interface" message gets logged on > machines that are well supported. > > Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> > --- > drivers/platform/x86/thinkpad_acpi.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/platform/x86/thinkpad_acpi.c > b/drivers/platform/x86/thinkpad_acpi.c > index a268a7a..e305ab5 100644 > --- a/drivers/platform/x86/thinkpad_acpi.c > +++ b/drivers/platform/x86/thinkpad_acpi.c > @@ -6653,18 +6653,16 @@ static void __init > tpacpi_detect_brightness_capabilities(void) > switch (b) { > case 16: > bright_maxlvl = 15; > - pr_info("detected a 16-level brightness capable ThinkPad\n"); > break; > case 8: > case 0: > bright_maxlvl = 7; > - pr_info("detected a 8-level brightness capable ThinkPad\n"); > break; > default: > - pr_info("Unsupported brightness interface\n"); > tp_features.bright_unkfw = 1; > bright_maxlvl = b - 1; > } > + pr_debug("detected %u brightness levels\n", bright_maxlvl + 1); > } > > static int __init brightness_init(struct ibm_init_struct *iibm) Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br> -- "One disk to rule them all, One disk to find them. One disk to bring them all and in the darkness grind them. In the Land of Redmond where the shadows lie." -- The Silicon Valley Tarot Henrique Holschuh ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] Remove ambiguous logging for "Unsupported brightness interface" 2016-01-30 16:55 ` Eric Curtin 2016-01-30 19:49 ` Henrique de Moraes Holschuh @ 2016-02-07 20:13 ` Darren Hart 1 sibling, 0 replies; 9+ messages in thread From: Darren Hart @ 2016-02-07 20:13 UTC (permalink / raw) To: Eric Curtin Cc: Henrique de Moraes Holschuh, Joe Perches, platform-driver-x86, Kernel development list, ibm-acpi-devel On Sat, Jan 30, 2016 at 04:55:59PM +0000, Eric Curtin wrote: > On 30 January 2016 at 12:20, Henrique de Moraes Holschuh <hmh@hmh.eng.br> wrote: > > On Wed, 27 Jan 2016, Joe Perches wrote: > >> On Wed, 2016-01-27 at 22:14 +0000, Eric Curtin wrote: > >> > Message gets logged on machines that are well supported. > >> > > >> > Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> > >> > --- > >> > drivers/platform/x86/thinkpad_acpi.c | 1 - > >> > 1 file changed, 1 deletion(-) > >> > > >> > diff --git a/drivers/platform/x86/thinkpad_acpi.c > >> > b/drivers/platform/x86/thinkpad_acpi.c > >> > index a268a7a..4eb41aa 100644 > >> > --- a/drivers/platform/x86/thinkpad_acpi.c > >> > +++ b/drivers/platform/x86/thinkpad_acpi.c > >> > @@ -6661,7 +6661,6 @@ static void __init > >> > tpacpi_detect_brightness_capabilities(void) > >> > pr_info("detected a 8-level brightness capable > >> > ThinkPad\n"); > >> > break; > >> > default: > >> > - pr_info("Unsupported brightness interface\n"); > >> > tp_features.bright_unkfw = 1; > >> > bright_maxlvl = b - 1; > >> > } > >> > >> Perhaps this should be something like this instead: > >> --- > >> drivers/platform/x86/thinkpad_acpi.c | 4 +--- > >> 1 file changed, 1 insertion(+), 3 deletions(-) > >> > >> diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c > >> index a268a7a..bd12c71 100644 > >> --- a/drivers/platform/x86/thinkpad_acpi.c > >> +++ b/drivers/platform/x86/thinkpad_acpi.c > >> @@ -6653,18 +6653,16 @@ static void __init tpacpi_detect_brightness_capabilities(void) > >> switch (b) { > >> case 16: > >> bright_maxlvl = 15; > >> - pr_info("detected a 16-level brightness capable ThinkPad\n"); > >> break; > >> case 8: > >> case 0: > >> bright_maxlvl = 7; > >> - pr_info("detected a 8-level brightness capable ThinkPad\n"); > >> break; > >> default: > >> - pr_info("Unsupported brightness interface\n"); > >> tp_features.bright_unkfw = 1; > >> bright_maxlvl = b - 1; > >> } > >> + pr_info("detected %u brightness levels\n", bright_maxlvl + 1); > >> } > > > > This can be made pr_debug, since we're touching it... > > > > -- > > "One disk to rule them all, One disk to find them. One disk to bring > > them all and in the darkness grind them. In the Land of Redmond > > where the shadows lie." -- The Silicon Valley Tarot > > Henrique Holschuh > > "Unsupported brightness interface" message gets logged on > machines that are well supported. > > Signed-off-by: Eric Curtin <ericcurtin17@gmail.com> > --- > drivers/platform/x86/thinkpad_acpi.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/platform/x86/thinkpad_acpi.c > b/drivers/platform/x86/thinkpad_acpi.c > index a268a7a..e305ab5 100644 > --- a/drivers/platform/x86/thinkpad_acpi.c > +++ b/drivers/platform/x86/thinkpad_acpi.c > @@ -6653,18 +6653,16 @@ static void __init > tpacpi_detect_brightness_capabilities(void) > switch (b) { > case 16: > bright_maxlvl = 15; > - pr_info("detected a 16-level brightness capable ThinkPad\n"); > break; > case 8: > case 0: > bright_maxlvl = 7; > - pr_info("detected a 8-level brightness capable ThinkPad\n"); > break; > default: > - pr_info("Unsupported brightness interface\n"); > tp_features.bright_unkfw = 1; > bright_maxlvl = b - 1; > } > + pr_debug("detected %u brightness levels\n", bright_maxlvl + 1); This patch is malformed, has whitespace issues, and doesn't apply. Please apply all patches before sending them to the list. Given it's trivial, I made the change manually and have queued this up to the testing branch. Thanks, -- Darren Hart Intel Open Source Technology Center ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-02-07 20:13 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-01-27 22:14 [PATCH] Remove ambiguous logging for "Unsupported brightness interface" Eric Curtin 2016-01-27 23:26 ` Joe Perches 2016-01-28 0:36 ` Eric Curtin 2016-01-28 0:43 ` Joe Perches 2016-01-28 0:52 ` Eric Curtin 2016-01-30 12:20 ` Henrique de Moraes Holschuh 2016-01-30 16:55 ` Eric Curtin 2016-01-30 19:49 ` Henrique de Moraes Holschuh 2016-02-07 20:13 ` Darren Hart
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).