All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/02] backlight: control WLED output current in da9034
@ 2009-11-05  7:57 Haojian Zhuang
  2009-11-05  8:20 ` Haojian Zhuang
  0 siblings, 1 reply; 6+ messages in thread
From: Haojian Zhuang @ 2009-11-05  7:57 UTC (permalink / raw)
  To: linux-arm-kernel



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

* [PATCH 01/02] backlight: control WLED output current in da9034
  2009-11-05  7:57 [PATCH 01/02] backlight: control WLED output current in da9034 Haojian Zhuang
@ 2009-11-05  8:20 ` Haojian Zhuang
  2009-11-17  7:27   ` Haojian Zhuang
  0 siblings, 1 reply; 6+ messages in thread
From: Haojian Zhuang @ 2009-11-05  8:20 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Nov 5, 2009 at 2:57 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
> From ff0d136a181ce431a0db9582f18733425a51411d Mon Sep 17 00:00:00 2001
> From: Haojian Zhuang <haojian.zhuang@marvell.com>
> Date: Thu, 5 Nov 2009 10:27:13 -0500
> Subject: [PATCH] backlight: control WLED output current in da9034
>
> Update WLED output current source before changing brightness.
>
> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
> ---
> ?drivers/video/backlight/da903x_bl.c | ? 15 ++++++++++++++-
> ?include/linux/mfd/da903x.h ? ? ? ? ?| ? ?7 +++++++
> ?2 files changed, 21 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/video/backlight/da903x_bl.c
> b/drivers/video/backlight/da903x_bl.c
> index 701a108..9aba516 100644
> --- a/drivers/video/backlight/da903x_bl.c
> +++ b/drivers/video/backlight/da903x_bl.c
> @@ -35,6 +35,7 @@ struct da903x_backlight_data {
> ? ? ? ?struct device *da903x_dev;
> ? ? ? ?int id;
> ? ? ? ?int current_brightness;
> + ? ? ? int out_current; ? ? ? ? ? ? ? ?/* output current */
> ?};
>
> ?static int da903x_backlight_set(struct backlight_device *bl, int brightness)
> @@ -56,10 +57,17 @@ static int da903x_backlight_set(struct
> backlight_device *bl, int brightness)
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_CONTROL2,
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_BOOST_EN);
>
> - ? ? ? ? ? ? ? if (data->current_brightness == 0 && brightness)
> + ? ? ? ? ? ? ? if (data->current_brightness == 0 && brightness) {
> + ? ? ? ? ? ? ? ? ? ? ? if (data->out_current) {
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ret = da903x_write(dev, DA9034_WLED_CONTROL2,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? data->out_current);
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (ret)
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? return ret;
> + ? ? ? ? ? ? ? ? ? ? ? }
> ? ? ? ? ? ? ? ? ? ? ? ?ret = da903x_set_bits(dev,
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_CONTROL2,
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_BOOST_EN);
> + ? ? ? ? ? ? ? }
> ? ? ? ? ? ? ? ?break;
> ? ? ? ?case DA9030_ID_WLED:
> ? ? ? ? ? ? ? ?val = DA9030_WLED_TRIM(brightness);
> @@ -101,6 +109,7 @@ static struct backlight_ops da903x_backlight_ops = {
>
> ?static int da903x_backlight_probe(struct platform_device *pdev)
> ?{
> + ? ? ? struct da9034_backlight_pdata *pdata = pdev->dev.platform_data;
> ? ? ? ?struct da903x_backlight_data *data;
> ? ? ? ?struct backlight_device *bl;
> ? ? ? ?int max_brightness;
> @@ -127,6 +136,10 @@ static int da903x_backlight_probe(struct
> platform_device *pdev)
> ? ? ? ?data->da903x_dev = pdev->dev.parent;
> ? ? ? ?data->current_brightness = 0;
>
> + ? ? ? /* set output current */
> + ? ? ? if (pdata)
> + ? ? ? ? ? ? ? data->out_current = pdata->out_current;
> +
> ? ? ? ?bl = backlight_device_register(pdev->name, data->da903x_dev,
> ? ? ? ? ? ? ? ? ? ? ? ?data, &da903x_backlight_ops);
> ? ? ? ?if (IS_ERR(bl)) {
> diff --git a/include/linux/mfd/da903x.h b/include/linux/mfd/da903x.h
> index c63b65c..240a893 100644
> --- a/include/linux/mfd/da903x.h
> +++ b/include/linux/mfd/da903x.h
> @@ -96,6 +96,13 @@ struct da9034_touch_pdata {
> ? ? ? ?int ? ? y_inverted;
> ?};
>
> +#define DA9034_WLED_OUT_MASK ? ((1 << 5) - 1)
> +#define DA9034_WLED_CURRENT(x) (x & DA9034_WLED_OUT_MASK)
> +
> +struct da9034_backlight_pdata {
> + ? ? ? int ? ? out_current; ? ?/* output current of WLED, unit is mA */
> +};
> +
> ?/* DA9030 battery charger data */
> ?struct power_supply_info;
>
> --
> 1.5.6.5
>

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

* [PATCH 01/02] backlight: control WLED output current in da9034
  2009-11-05  8:20 ` Haojian Zhuang
@ 2009-11-17  7:27   ` Haojian Zhuang
  2009-11-17 11:04     ` Eric Miao
  0 siblings, 1 reply; 6+ messages in thread
From: Haojian Zhuang @ 2009-11-17  7:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Nov 5, 2009 at 3:20 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
> On Thu, Nov 5, 2009 at 2:57 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>> From ff0d136a181ce431a0db9582f18733425a51411d Mon Sep 17 00:00:00 2001
>> From: Haojian Zhuang <haojian.zhuang@marvell.com>
>> Date: Thu, 5 Nov 2009 10:27:13 -0500
>> Subject: [PATCH] backlight: control WLED output current in da9034
>>
>> Update WLED output current source before changing brightness.
>>
>> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
>> ---
>> ?drivers/video/backlight/da903x_bl.c | ? 15 ++++++++++++++-
>> ?include/linux/mfd/da903x.h ? ? ? ? ?| ? ?7 +++++++
>> ?2 files changed, 21 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/video/backlight/da903x_bl.c
>> b/drivers/video/backlight/da903x_bl.c
>> index 701a108..9aba516 100644
>> --- a/drivers/video/backlight/da903x_bl.c
>> +++ b/drivers/video/backlight/da903x_bl.c
>> @@ -35,6 +35,7 @@ struct da903x_backlight_data {
>> ? ? ? ?struct device *da903x_dev;
>> ? ? ? ?int id;
>> ? ? ? ?int current_brightness;
>> + ? ? ? int out_current; ? ? ? ? ? ? ? ?/* output current */
>> ?};
>>
>> ?static int da903x_backlight_set(struct backlight_device *bl, int brightness)
>> @@ -56,10 +57,17 @@ static int da903x_backlight_set(struct
>> backlight_device *bl, int brightness)
>> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_CONTROL2,
>> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_BOOST_EN);
>>
>> - ? ? ? ? ? ? ? if (data->current_brightness == 0 && brightness)
>> + ? ? ? ? ? ? ? if (data->current_brightness == 0 && brightness) {
>> + ? ? ? ? ? ? ? ? ? ? ? if (data->out_current) {
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ret = da903x_write(dev, DA9034_WLED_CONTROL2,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? data->out_current);
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? if (ret)
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? return ret;
>> + ? ? ? ? ? ? ? ? ? ? ? }
>> ? ? ? ? ? ? ? ? ? ? ? ?ret = da903x_set_bits(dev,
>> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_CONTROL2,
>> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?DA9034_WLED_BOOST_EN);
>> + ? ? ? ? ? ? ? }
>> ? ? ? ? ? ? ? ?break;
>> ? ? ? ?case DA9030_ID_WLED:
>> ? ? ? ? ? ? ? ?val = DA9030_WLED_TRIM(brightness);
>> @@ -101,6 +109,7 @@ static struct backlight_ops da903x_backlight_ops = {
>>
>> ?static int da903x_backlight_probe(struct platform_device *pdev)
>> ?{
>> + ? ? ? struct da9034_backlight_pdata *pdata = pdev->dev.platform_data;
>> ? ? ? ?struct da903x_backlight_data *data;
>> ? ? ? ?struct backlight_device *bl;
>> ? ? ? ?int max_brightness;
>> @@ -127,6 +136,10 @@ static int da903x_backlight_probe(struct
>> platform_device *pdev)
>> ? ? ? ?data->da903x_dev = pdev->dev.parent;
>> ? ? ? ?data->current_brightness = 0;
>>
>> + ? ? ? /* set output current */
>> + ? ? ? if (pdata)
>> + ? ? ? ? ? ? ? data->out_current = pdata->out_current;
>> +
>> ? ? ? ?bl = backlight_device_register(pdev->name, data->da903x_dev,
>> ? ? ? ? ? ? ? ? ? ? ? ?data, &da903x_backlight_ops);
>> ? ? ? ?if (IS_ERR(bl)) {
>> diff --git a/include/linux/mfd/da903x.h b/include/linux/mfd/da903x.h
>> index c63b65c..240a893 100644
>> --- a/include/linux/mfd/da903x.h
>> +++ b/include/linux/mfd/da903x.h
>> @@ -96,6 +96,13 @@ struct da9034_touch_pdata {
>> ? ? ? ?int ? ? y_inverted;
>> ?};
>>
>> +#define DA9034_WLED_OUT_MASK ? ((1 << 5) - 1)
>> +#define DA9034_WLED_CURRENT(x) (x & DA9034_WLED_OUT_MASK)
>> +
>> +struct da9034_backlight_pdata {
>> + ? ? ? int ? ? out_current; ? ?/* output current of WLED, unit is mA */
>> +};
>> +
>> ?/* DA9030 battery charger data */
>> ?struct power_supply_info;
>>
>> --
>> 1.5.6.5
>>
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-backlight-control-WLED-output-current-in-da9034.patch
Type: text/x-patch
Size: 2704 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20091117/38ae295b/attachment-0001.bin>

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

* [PATCH 01/02] backlight: control WLED output current in da9034
  2009-11-17  7:27   ` Haojian Zhuang
@ 2009-11-17 11:04     ` Eric Miao
  2009-11-17 11:12       ` Haojian Zhuang
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Miao @ 2009-11-17 11:04 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 17, 2009 at 1:27 AM, Haojian Zhuang
<haojian.zhuang@gmail.com> wrote:
> On Thu, Nov 5, 2009 at 3:20 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>> On Thu, Nov 5, 2009 at 2:57 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>>> From ff0d136a181ce431a0db9582f18733425a51411d Mon Sep 17 00:00:00 2001
>>> From: Haojian Zhuang <haojian.zhuang@marvell.com>
>>> Date: Thu, 5 Nov 2009 10:27:13 -0500
>>> Subject: [PATCH] backlight: control WLED output current in da9034
>>>
>>> Update WLED output current source before changing brightness.
>>>
>>> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>

Haojian,

I've updated the patch as follows, changes:

1. out_current --> output_current
2. output_current will be set only once during probe - we don't need to
adjust it every time backlight is changed, right?
3. and thus removing the out_current field within da903x_backlight_data

Please help review and verify, thanks.

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

* [PATCH 01/02] backlight: control WLED output current in da9034
  2009-11-17 11:04     ` Eric Miao
@ 2009-11-17 11:12       ` Haojian Zhuang
  2009-11-17 11:32         ` Eric Miao
  0 siblings, 1 reply; 6+ messages in thread
From: Haojian Zhuang @ 2009-11-17 11:12 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 17, 2009 at 7:04 PM, Eric Miao <eric.y.miao@gmail.com> wrote:
> On Tue, Nov 17, 2009 at 1:27 AM, Haojian Zhuang
> <haojian.zhuang@gmail.com> wrote:
>> On Thu, Nov 5, 2009 at 3:20 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>>> On Thu, Nov 5, 2009 at 2:57 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>>>> From ff0d136a181ce431a0db9582f18733425a51411d Mon Sep 17 00:00:00 2001
>>>> From: Haojian Zhuang <haojian.zhuang@marvell.com>
>>>> Date: Thu, 5 Nov 2009 10:27:13 -0500
>>>> Subject: [PATCH] backlight: control WLED output current in da9034
>>>>
>>>> Update WLED output current source before changing brightness.
>>>>
>>>> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
>
> Haojian,
>
> I've updated the patch as follows, changes:
>
> 1. out_current --> output_current
> 2. output_current will be set only once during probe - we don't need to
> adjust it every time backlight is changed, right?
> 3. and thus removing the out_current field within da903x_backlight_data
>
> Please help review and verify, thanks.
>
> From 1351ae291bd237d3a754bedd550ab1f6f9fdbb20 Mon Sep 17 00:00:00 2001
> From: Haojian Zhuang <haojian.zhuang@marvell.com>
> Date: Thu, 5 Nov 2009 10:27:13 -0500
> Subject: [PATCH] da903x_bl: control WLED output current in da9034
>
> Update WLED output current source before changing brightness.
>
> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
> ---
> ?drivers/video/backlight/da903x_bl.c | ? ?7 +++++++
> ?include/linux/mfd/da903x.h ? ? ? ? ?| ? ?4 ++++
> ?2 files changed, 11 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/video/backlight/da903x_bl.c
> b/drivers/video/backlight/da903x_bl.c
> index 701a108..9cbd01d 100644
> --- a/drivers/video/backlight/da903x_bl.c
> +++ b/drivers/video/backlight/da903x_bl.c
> @@ -25,6 +25,7 @@
>
> ?#define DA9034_WLED_CONTROL1 ? 0x3C
> ?#define DA9034_WLED_CONTROL2 ? 0x3D
> +#define DA9034_WLED_ISET(x) ? ?((x) & 0x1f)
>
> ?#define DA9034_WLED_BOOST_EN ? (1 << 5)
>
> @@ -101,6 +102,7 @@ static struct backlight_ops da903x_backlight_ops = {
>
> ?static int da903x_backlight_probe(struct platform_device *pdev)
> ?{
> + ? ? ? struct da9034_backlight_pdata *pdata = pdev->dev.platform_data;
> ? ? ? ?struct da903x_backlight_data *data;
> ? ? ? ?struct backlight_device *bl;
> ? ? ? ?int max_brightness;
> @@ -127,6 +129,11 @@ static int da903x_backlight_probe(struct
> platform_device *pdev)
> ? ? ? ?data->da903x_dev = pdev->dev.parent;
> ? ? ? ?data->current_brightness = 0;
>
> + ? ? ? /* adjust the WLED output current */
> + ? ? ? if (pdata)
> + ? ? ? ? ? ? ? da903x_write(dev, DA9034_WLED_CONTROL2,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? DA9034_WLED_ISET(pdata->output_current));
> +
> ? ? ? ?bl = backlight_device_register(pdev->name, data->da903x_dev,
> ? ? ? ? ? ? ? ? ? ? ? ?data, &da903x_backlight_ops);
> ? ? ? ?if (IS_ERR(bl)) {
> diff --git a/include/linux/mfd/da903x.h b/include/linux/mfd/da903x.h
> index c63b65c..0aa3a1a 100644
> --- a/include/linux/mfd/da903x.h
> +++ b/include/linux/mfd/da903x.h
> @@ -96,6 +96,10 @@ struct da9034_touch_pdata {
> ? ? ? ?int ? ? y_inverted;
> ?};
>
> +struct da9034_backlight_pdata {
> + ? ? ? int ? ? output_current; /* output current of WLED, from 0-31 (in mA) */
> +};
> +
> ?/* DA9030 battery charger data */
> ?struct power_supply_info;
>
> --
> 1.6.3.3
>

I'm OK on this patch.

Thanks
Haojian

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

* [PATCH 01/02] backlight: control WLED output current in da9034
  2009-11-17 11:12       ` Haojian Zhuang
@ 2009-11-17 11:32         ` Eric Miao
  0 siblings, 0 replies; 6+ messages in thread
From: Eric Miao @ 2009-11-17 11:32 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 17, 2009 at 5:12 AM, Haojian Zhuang
<haojian.zhuang@gmail.com> wrote:
> On Tue, Nov 17, 2009 at 7:04 PM, Eric Miao <eric.y.miao@gmail.com> wrote:
>> On Tue, Nov 17, 2009 at 1:27 AM, Haojian Zhuang
>> <haojian.zhuang@gmail.com> wrote:
>>> On Thu, Nov 5, 2009 at 3:20 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>>>> On Thu, Nov 5, 2009 at 2:57 AM, Haojian Zhuang <haojian.zhuang@gmail.com> wrote:
>>>>> From ff0d136a181ce431a0db9582f18733425a51411d Mon Sep 17 00:00:00 2001
>>>>> From: Haojian Zhuang <haojian.zhuang@marvell.com>
>>>>> Date: Thu, 5 Nov 2009 10:27:13 -0500
>>>>> Subject: [PATCH] backlight: control WLED output current in da9034
>>>>>
>>>>> Update WLED output current source before changing brightness.
>>>>>
>>>>> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
>>
>> Haojian,
>>
>> I've updated the patch as follows, changes:
>>
>> 1. out_current --> output_current
>> 2. output_current will be set only once during probe - we don't need to
>> adjust it every time backlight is changed, right?
>> 3. and thus removing the out_current field within da903x_backlight_data
>>
>> Please help review and verify, thanks.
>>
>> From 1351ae291bd237d3a754bedd550ab1f6f9fdbb20 Mon Sep 17 00:00:00 2001
>> From: Haojian Zhuang <haojian.zhuang@marvell.com>
>> Date: Thu, 5 Nov 2009 10:27:13 -0500
>> Subject: [PATCH] da903x_bl: control WLED output current in da9034
>>
>> Update WLED output current source before changing brightness.
>>
>> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
>> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
>> ---
>> ?drivers/video/backlight/da903x_bl.c | ? ?7 +++++++
>> ?include/linux/mfd/da903x.h ? ? ? ? ?| ? ?4 ++++
>> ?2 files changed, 11 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/video/backlight/da903x_bl.c
>> b/drivers/video/backlight/da903x_bl.c
>> index 701a108..9cbd01d 100644
>> --- a/drivers/video/backlight/da903x_bl.c
>> +++ b/drivers/video/backlight/da903x_bl.c
>> @@ -25,6 +25,7 @@
>>
>> ?#define DA9034_WLED_CONTROL1 ? 0x3C
>> ?#define DA9034_WLED_CONTROL2 ? 0x3D
>> +#define DA9034_WLED_ISET(x) ? ?((x) & 0x1f)
>>
>> ?#define DA9034_WLED_BOOST_EN ? (1 << 5)
>>
>> @@ -101,6 +102,7 @@ static struct backlight_ops da903x_backlight_ops = {
>>
>> ?static int da903x_backlight_probe(struct platform_device *pdev)
>> ?{
>> + ? ? ? struct da9034_backlight_pdata *pdata = pdev->dev.platform_data;
>> ? ? ? ?struct da903x_backlight_data *data;
>> ? ? ? ?struct backlight_device *bl;
>> ? ? ? ?int max_brightness;
>> @@ -127,6 +129,11 @@ static int da903x_backlight_probe(struct
>> platform_device *pdev)
>> ? ? ? ?data->da903x_dev = pdev->dev.parent;
>> ? ? ? ?data->current_brightness = 0;
>>
>> + ? ? ? /* adjust the WLED output current */
>> + ? ? ? if (pdata)
>> + ? ? ? ? ? ? ? da903x_write(dev, DA9034_WLED_CONTROL2,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? DA9034_WLED_ISET(pdata->output_current));
>> +
>> ? ? ? ?bl = backlight_device_register(pdev->name, data->da903x_dev,
>> ? ? ? ? ? ? ? ? ? ? ? ?data, &da903x_backlight_ops);
>> ? ? ? ?if (IS_ERR(bl)) {
>> diff --git a/include/linux/mfd/da903x.h b/include/linux/mfd/da903x.h
>> index c63b65c..0aa3a1a 100644
>> --- a/include/linux/mfd/da903x.h
>> +++ b/include/linux/mfd/da903x.h
>> @@ -96,6 +96,10 @@ struct da9034_touch_pdata {
>> ? ? ? ?int ? ? y_inverted;
>> ?};
>>
>> +struct da9034_backlight_pdata {
>> + ? ? ? int ? ? output_current; /* output current of WLED, from 0-31 (in mA) */
>> +};
>> +
>> ?/* DA9030 battery charger data */
>> ?struct power_supply_info;
>>
>> --
>> 1.6.3.3
>>
>
> I'm OK on this patch.

OK, will be first merged into 'devel' branch and dropped if Richard merges
this, since these two patches do have dependency issue.

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

end of thread, other threads:[~2009-11-17 11:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-05  7:57 [PATCH 01/02] backlight: control WLED output current in da9034 Haojian Zhuang
2009-11-05  8:20 ` Haojian Zhuang
2009-11-17  7:27   ` Haojian Zhuang
2009-11-17 11:04     ` Eric Miao
2009-11-17 11:12       ` Haojian Zhuang
2009-11-17 11:32         ` Eric Miao

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.