From: Jingoo Han <jg1.han@samsung.com>
To: 'Andrew Morton' <akpm@linux-foundation.org>,
'Andrew Bresticker' <abrestic@chromium.org>
Cc: linux-fbdev@vger.kernel.org, 'Richard Purdie' <rpurdie@rpsys.net>,
'Florian Tobias Schandinat' <FlorianSchandinat@gmx.de>,
linux-kernel@vger.kernel.org,
'Doug Anderson' <dianders@chromium.org>,
'Jingoo Han' <jg1.han@samsung.com>
Subject: Re: [PATCH v2] backlight: platform_lcd: introduce probe callback
Date: Tue, 16 Apr 2013 00:53:12 +0000 [thread overview]
Message-ID: <001601ce3a3c$c5680360$50380a20$%han@samsung.com> (raw)
In-Reply-To: <20130415160632.99e867b25418189c95fbc826@linux-foundation.org>
On Tuesday, April 16, 2013 8:07 AM, Andrew Morton wrote:
>
> On Thu, 11 Apr 2013 13:24:50 -0700 Andrew Bresticker <abrestic@chromium.org> wrote:
>
> > Platform LCD devices may need to do some device-specific
> > initialization before they can be used (regulator or GPIO setup,
> > for example), but currently the driver does not support any way of
> > doing this. This patch adds a probe() callback to plat_lcd_data
> > which platform LCD devices can set to indicate that device-specific
> > initialization is needed.
> >
> > index 17a6b83..f46180e 100644
> > --- a/drivers/video/backlight/platform_lcd.c
> > +++ b/drivers/video/backlight/platform_lcd.c
> > @@ -86,6 +86,12 @@ static int platform_lcd_probe(struct platform_device *pdev)
> > return -EINVAL;
> > }
> >
> > + if (pdata->probe) {
> > + err = pdata->probe(pdata);
> > + if (err)
> > + return err;
> > + }
> > +
> > plcd = devm_kzalloc(&pdev->dev, sizeof(struct platform_lcd),
> > GFP_KERNEL);
> > if (!plcd) {
> > diff --git a/include/video/platform_lcd.h b/include/video/platform_lcd.h
> > index ad3bdfe..23864b2 100644
> > --- a/include/video/platform_lcd.h
> > +++ b/include/video/platform_lcd.h
> > @@ -15,6 +15,7 @@ struct plat_lcd_data;
> > struct fb_info;
> >
> > struct plat_lcd_data {
> > + int (*probe)(struct plat_lcd_data *);
> > void (*set_power)(struct plat_lcd_data *, unsigned int power);
> > int (*match_fb)(struct plat_lcd_data *, struct fb_info *);
> > };
>
> Sigh. I see that this entire interface has been lovingly undocumented.
> It's an invitation for us to grow bugs, incompatibilities, leaks, etc.
>
> Possible example: what happens if pdata->probe does some resource
> allocation or device initialisation which should be backed out if, say,
> platform_lcd_probe() later fails?
Hi Andrew,
I agree with you.
Indeed, the documentation is necessary.
Andrew Bresticker,
Would you make the document?
It would be very helpful.
Best regards,
Jingoo Han
prev parent reply other threads:[~2013-04-16 0:53 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-11 18:36 [PATCH] backlight: platform_lcd: introduce probe callback Andrew Bresticker
2013-04-11 19:14 ` Doug Anderson
2013-04-11 20:17 ` Andrew Bresticker
2013-04-11 20:24 ` [PATCH v2] " Andrew Bresticker
2013-04-11 20:30 ` Doug Anderson
2013-04-15 1:47 ` Jingoo Han
2013-04-15 23:06 ` Andrew Morton
2013-04-16 0:53 ` Jingoo Han [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='001601ce3a3c$c5680360$50380a20$%han@samsung.com' \
--to=jg1.han@samsung.com \
--cc=FlorianSchandinat@gmx.de \
--cc=abrestic@chromium.org \
--cc=akpm@linux-foundation.org \
--cc=dianders@chromium.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rpurdie@rpsys.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).