From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To: Thierry Reding <thierry.reding@avionic-design.de>
Cc: Tero Kristo <t-kristo@ti.com>,
Grazvydas Ignotas <notasas@gmail.com>,
linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org,
Linus Walleij <linus.walleij@linaro.org>
Subject: Re: [PATCH v3 3/3] pwm: New driver to support PWM driven LEDs on TWL4030/6030 series of PMICs
Date: Mon, 26 Nov 2012 10:33:55 +0100 [thread overview]
Message-ID: <50B33783.80704@ti.com> (raw)
In-Reply-To: <20121126091756.GA8602@avionic-0098.adnet.avionic-design.de>
On 11/26/2012 10:17 AM, Thierry Reding wrote:
>>> Doesn't this belong in the drivers/leds subsystem? Besides that, the
>>> same comments as for the previous patch apply. One additional note
>>> below.
>>
>> The PINs itself are called as LED but they are PWMs at the end. If we
>> represent them as PWMs they can be used for different purposes which is going
>> to be needed for example in BeagleBoard, where the LEDA (PWMA) is used as a
>> GPO to enable/disable the USB host power.
>
> Heh, that's an interesting use-case for a PWM. =)
You should have seen the expression on my face when I saw this on the
schematics ;)
>> Also the removed 'twl6030-pwm' driver was only controlled the LED part of twl6030.
>> With this series I enable the use of the PWMs and the PWMs behind of the LED
>> functions to give us flexibility on how we are using them.
>
> Alright, we can keep it in the PWM subsystem then.
Thank you.
>>>> +static struct platform_driver twl_pwmled_driver = {
>>>> + .driver = {
>>>> + .name = "twl-pwmled",
>>>> + .of_match_table = of_match_ptr(twl_pwmled_of_match),
>>>> + },
>>>> + .probe = twl_pwmled_probe,
>>>> + .remove = __devexit_p(twl_pwmled_remove),
>>>
>>> You didn't annotate twl_pwmled_remove() with __devexit, so __devexit_p
>>> isn't needed here either.
>>
>> Oh yes, I have also received patches from a series which removes the
>> _devexit_p() from the kernel.
>> But should the __devexit need to be added to the remove function?
>
> __devexit_p without a corresponding __devexit doesn't make sense. But as
> all of __devinit, __devexit and __devexit_p will be removed sooner or
> later, new code just shouldn't bother adding it. In this case, just drop
> __devexit_p.
I'll get rid of them.
Thank you,
Péter
WARNING: multiple messages have this Message-ID (diff)
From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To: Thierry Reding <thierry.reding@avionic-design.de>
Cc: Tero Kristo <t-kristo@ti.com>,
Grazvydas Ignotas <notasas@gmail.com>,
<linux-kernel@vger.kernel.org>, <linux-omap@vger.kernel.org>,
Linus Walleij <linus.walleij@linaro.org>
Subject: Re: [PATCH v3 3/3] pwm: New driver to support PWM driven LEDs on TWL4030/6030 series of PMICs
Date: Mon, 26 Nov 2012 10:33:55 +0100 [thread overview]
Message-ID: <50B33783.80704@ti.com> (raw)
In-Reply-To: <20121126091756.GA8602@avionic-0098.adnet.avionic-design.de>
On 11/26/2012 10:17 AM, Thierry Reding wrote:
>>> Doesn't this belong in the drivers/leds subsystem? Besides that, the
>>> same comments as for the previous patch apply. One additional note
>>> below.
>>
>> The PINs itself are called as LED but they are PWMs at the end. If we
>> represent them as PWMs they can be used for different purposes which is going
>> to be needed for example in BeagleBoard, where the LEDA (PWMA) is used as a
>> GPO to enable/disable the USB host power.
>
> Heh, that's an interesting use-case for a PWM. =)
You should have seen the expression on my face when I saw this on the
schematics ;)
>> Also the removed 'twl6030-pwm' driver was only controlled the LED part of twl6030.
>> With this series I enable the use of the PWMs and the PWMs behind of the LED
>> functions to give us flexibility on how we are using them.
>
> Alright, we can keep it in the PWM subsystem then.
Thank you.
>>>> +static struct platform_driver twl_pwmled_driver = {
>>>> + .driver = {
>>>> + .name = "twl-pwmled",
>>>> + .of_match_table = of_match_ptr(twl_pwmled_of_match),
>>>> + },
>>>> + .probe = twl_pwmled_probe,
>>>> + .remove = __devexit_p(twl_pwmled_remove),
>>>
>>> You didn't annotate twl_pwmled_remove() with __devexit, so __devexit_p
>>> isn't needed here either.
>>
>> Oh yes, I have also received patches from a series which removes the
>> _devexit_p() from the kernel.
>> But should the __devexit need to be added to the remove function?
>
> __devexit_p without a corresponding __devexit doesn't make sense. But as
> all of __devinit, __devexit and __devexit_p will be removed sooner or
> later, new code just shouldn't bother adding it. In this case, just drop
> __devexit_p.
I'll get rid of them.
Thank you,
Péter
next prev parent reply other threads:[~2012-11-26 9:33 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-20 9:56 [PATCH v3 0/3] pwm: Drivers for twl4030/6030 PWMs and LEDs Peter Ujfalusi
2012-11-20 9:56 ` Peter Ujfalusi
2012-11-20 9:56 ` [PATCH v3 1/3] pwm: Remove pwm-twl6030 driver Peter Ujfalusi
2012-11-20 9:56 ` Peter Ujfalusi
2012-11-23 15:05 ` Thierry Reding
2012-11-26 9:11 ` Peter Ujfalusi
2012-11-26 9:11 ` Peter Ujfalusi
2012-11-20 9:56 ` [PATCH v3 2/3] pwm: New driver to support PWMs on TWL4030/6030 series of PMICs Peter Ujfalusi
2012-11-20 9:56 ` Peter Ujfalusi
2012-11-23 14:58 ` Thierry Reding
2012-11-26 9:31 ` Peter Ujfalusi
2012-11-26 9:31 ` Peter Ujfalusi
2012-11-20 9:56 ` [PATCH v3 3/3] pwm: New driver to support PWM driven LEDs " Peter Ujfalusi
2012-11-20 9:56 ` Peter Ujfalusi
2012-11-20 11:54 ` Peter Ujfalusi
2012-11-20 11:54 ` Peter Ujfalusi
2012-11-20 11:58 ` Thierry Reding
2012-11-23 9:51 ` Peter Ujfalusi
2012-11-23 9:51 ` Peter Ujfalusi
2012-11-23 15:04 ` Thierry Reding
2012-11-26 8:30 ` Peter Ujfalusi
2012-11-26 8:30 ` Peter Ujfalusi
2012-11-26 9:17 ` Thierry Reding
2012-11-26 9:33 ` Peter Ujfalusi [this message]
2012-11-26 9:33 ` Peter Ujfalusi
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=50B33783.80704@ti.com \
--to=peter.ujfalusi@ti.com \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=notasas@gmail.com \
--cc=t-kristo@ti.com \
--cc=thierry.reding@avionic-design.de \
/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 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.