From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anisse Astier Date: Wed, 24 Feb 2010 15:33:56 +0000 Subject: Re: [PATCH 3/3] backlight: fix missing/incomplete registration Message-Id: <20100224163356.7e8c4464@destiny.ordissimo> List-Id: References: <20100221001049.2f63f5d6@neptune.home> <20100221002831.689bace8@neptune.home> <20100221133528.GB1840@holoscopio.com> In-Reply-To: <20100221133528.GB1840@holoscopio.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: Bruno =?UTF-8?B?UHLDqW1vbnQ=?= Cc: Thadeu Lima de Souza Cascardo , Andrew Morton , Greg Kroah-Hartman , Daniel Oliveira Nascimento , Len Brown , Thomas Renninger , Matt Chen , Harald Welte , Martin Lucina , Bjorn Helgaas , pancho horrillo , Mike Frysinger , Vivek Kutal , Michael Hennerich , linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org On Sun, 21 Feb 2010 10:35:29 -0300, Thadeu Lima de Souza Cascardo wrote : > On Sun, Feb 21, 2010 at 12:28:31AM +0100, Bruno Prémont wrote: > > Check newly registered backlight_device for error and properly > > return error to parent > > > > Signed-off-by: Bruno Prémont > > --- > > drivers/platform/x86/classmate-laptop.c | 2 ++ > > drivers/platform/x86/msi-wmi.c | 4 +++- > > drivers/platform/x86/panasonic-laptop.c | 4 +++- > > drivers/usb/misc/appledisplay.c | 1 + > > drivers/video/bf54x-lq043fb.c | 8 ++++++++ > > drivers/video/bfin-t350mcqb-fb.c | 8 ++++++++ > > 6 files changed, 25 insertions(+), 2 deletions(-) > > > > I think you should split the patch for every driver. Then, every > mantainer may ack only its particular section of the patch. > I agree. > > diff --git a/drivers/platform/x86/msi-wmi.c b/drivers/platform/x86/msi-wmi.c > > index 5f7cff1..2ffbfcf 100644 > > --- a/drivers/platform/x86/msi-wmi.c > > +++ b/drivers/platform/x86/msi-wmi.c > > @@ -251,8 +251,10 @@ static int __init msi_wmi_init(void) > > if (!acpi_video_backlight_support()) { > > backlight = backlight_device_register(DRV_NAME, > > NULL, NULL, &msi_backlight_ops); > > - if (IS_ERR(backlight)) > > + if (IS_ERR(backlight)) { > > + err = PTR_ERR(backlight); > > goto err_free_input; > > + } > > > > backlight->props.max_brightness = ARRAY_SIZE(backlight_map) - 1; > > err = bl_get(NULL); Anyway, the msi-wmi part looks good to me. Anisse