* [PATCH] RTC/pxa: remove unnecessary private ops->ioctl()
@ 2010-06-05 14:29 Wan ZongShun
2010-06-07 8:47 ` Robert Jarzmik
0 siblings, 1 reply; 4+ messages in thread
From: Wan ZongShun @ 2010-06-05 14:29 UTC (permalink / raw)
To: linux-arm-kernel
Please, do not implement private ops->ioctl() unless absolutely necessary.
pxa series RTC driver's ioctl() is unnecessary, since RTC subsystem has implement
the ioctl() very well,so we can only use the API of '.alarm_irq_enable' and
'.update_irq_enable' to do enable irq action.
Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
---
drivers/rtc/rtc-pxa.c | 41 ++++++++++++++++++++++-------------------
1 files changed, 22 insertions(+), 19 deletions(-)
diff --git a/drivers/rtc/rtc-pxa.c b/drivers/rtc/rtc-pxa.c
index e9c6fa0..8ba4af8 100644
--- a/drivers/rtc/rtc-pxa.c
+++ b/drivers/rtc/rtc-pxa.c
@@ -236,32 +236,34 @@ static int pxa_periodic_irq_set_state(struct device *dev, int enabled)
return 0;
}
-static int pxa_rtc_ioctl(struct device *dev, unsigned int cmd,
- unsigned long arg)
+static int pxa_alarm_irq_enable(struct device *dev, unsigned int enabled)
{
struct pxa_rtc *pxa_rtc = dev_get_drvdata(dev);
- int ret = 0;
spin_lock_irq(&pxa_rtc->lock);
- switch (cmd) {
- case RTC_AIE_OFF:
- rtsr_clear_bits(pxa_rtc, RTSR_RDALE1);
- break;
- case RTC_AIE_ON:
+
+ if (enabled)
rtsr_set_bits(pxa_rtc, RTSR_RDALE1);
- break;
- case RTC_UIE_OFF:
- rtsr_clear_bits(pxa_rtc, RTSR_HZE);
- break;
- case RTC_UIE_ON:
+ else
+ rtsr_clear_bits(pxa_rtc, RTSR_RDALE1);
+
+ spin_unlock_irq(&pxa_rtc->lock);
+ return 0;
+}
+
+static int pxa_update_irq_enable(struct device *dev, unsigned int enabled)
+{
+ struct pxa_rtc *pxa_rtc = dev_get_drvdata(dev);
+
+ spin_lock_irq(&pxa_rtc->lock);
+
+ if (enabled)
rtsr_set_bits(pxa_rtc, RTSR_HZE);
- break;
- default:
- ret = -ENOIOCTLCMD;
- }
+ else
+ rtsr_clear_bits(pxa_rtc, RTSR_HZE);
spin_unlock_irq(&pxa_rtc->lock);
- return ret;
+ return 0;
}
static int pxa_rtc_read_time(struct device *dev, struct rtc_time *tm)
@@ -340,11 +342,12 @@ static int pxa_rtc_proc(struct device *dev, struct seq_file *seq)
static const struct rtc_class_ops pxa_rtc_ops = {
.open = pxa_rtc_open,
.release = pxa_rtc_release,
- .ioctl = pxa_rtc_ioctl,
.read_time = pxa_rtc_read_time,
.set_time = pxa_rtc_set_time,
.read_alarm = pxa_rtc_read_alarm,
.set_alarm = pxa_rtc_set_alarm,
+ .alarm_irq_enable = pxa_alarm_irq_enable,
+ .update_irq_enable = pxa_update_irq_enable,
.proc = pxa_rtc_proc,
.irq_set_state = pxa_periodic_irq_set_state,
.irq_set_freq = pxa_periodic_irq_set_freq,
--
1.6.3.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] RTC/pxa: remove unnecessary private ops->ioctl()
2010-06-05 14:29 [PATCH] RTC/pxa: remove unnecessary private ops->ioctl() Wan ZongShun
@ 2010-06-07 8:47 ` Robert Jarzmik
2010-06-07 8:57 ` Wan ZongShun
2010-06-07 9:31 ` Eric Miao
0 siblings, 2 replies; 4+ messages in thread
From: Robert Jarzmik @ 2010-06-07 8:47 UTC (permalink / raw)
To: linux-arm-kernel
Wan ZongShun <mcuos.com@gmail.com> writes:
> Please, do not implement private ops->ioctl() unless absolutely necessary.
> pxa series RTC driver's ioctl() is unnecessary, since RTC subsystem has implement
> the ioctl() very well,so we can only use the API of '.alarm_irq_enable' and
> '.update_irq_enable' to do enable irq action.
>
> Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
This is not an urgent fix, but a cleanup. Whoever gets it in (Alessandro through
rtc tree, Eric through arm/pxa tree, or Andrew) is to be defined.
I would go for Alessandro, as he handles the RTC tree.
Cheers.
--
Robert
PS: Removed alsa-devel list, as this is not alsa material
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] RTC/pxa: remove unnecessary private ops->ioctl()
2010-06-07 8:47 ` Robert Jarzmik
@ 2010-06-07 8:57 ` Wan ZongShun
2010-06-07 9:31 ` Eric Miao
1 sibling, 0 replies; 4+ messages in thread
From: Wan ZongShun @ 2010-06-07 8:57 UTC (permalink / raw)
To: linux-arm-kernel
2010/6/7 Robert Jarzmik <robert.jarzmik@free.fr>:
> Wan ZongShun <mcuos.com@gmail.com> writes:
>> Please, do not implement private ops->ioctl() unless absolutely necessary.
>> pxa series RTC driver's ioctl() is unnecessary, since RTC subsystem has implement
>> the ioctl() very well,so we can only use the API of '.alarm_irq_enable' and
>> '.update_irq_enable' to do enable irq action.
>>
>> Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
> Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
>
> This is not an urgent fix, but a cleanup. Whoever gets it in (Alessandro through
> rtc tree, Eric through arm/pxa tree, or Andrew) is to be defined.
>
I will ping Andrew to apply it as soon as I get the owner's ACK.
> I would go for Alessandro, as he handles the RTC tree.
>
> Cheers.
>
> --
> Robert
>
> PS: Removed alsa-devel list, as this is not alsa material
Yes, I think I am careless for this. sorry.
>
--
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel at lists.infradead.org
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
* linux-arm-NUC900 mailing list
mail addr:NUC900 at googlegroups.com
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com at gmail.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] RTC/pxa: remove unnecessary private ops->ioctl()
2010-06-07 8:47 ` Robert Jarzmik
2010-06-07 8:57 ` Wan ZongShun
@ 2010-06-07 9:31 ` Eric Miao
1 sibling, 0 replies; 4+ messages in thread
From: Eric Miao @ 2010-06-07 9:31 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Jun 7, 2010 at 4:47 PM, Robert Jarzmik <robert.jarzmik@free.fr> wrote:
> Wan ZongShun <mcuos.com@gmail.com> writes:
>> Please, do not implement private ops->ioctl() unless absolutely necessary.
>> pxa series RTC driver's ioctl() is unnecessary, since RTC subsystem has implement
>> the ioctl() very well,so we can only use the API of '.alarm_irq_enable' and
>> '.update_irq_enable' to do enable irq action.
>>
>> Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
> Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
>
> This is not an urgent fix, but a cleanup. Whoever gets it in (Alessandro through
> rtc tree, Eric through arm/pxa tree, or Andrew) is to be defined.
>
> I would go for Alessandro, as he handles the RTC tree.
>
Yeah, Acked-by: Eric Miao <eric.y.miao@gmail.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-06-07 9:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-05 14:29 [PATCH] RTC/pxa: remove unnecessary private ops->ioctl() Wan ZongShun
2010-06-07 8:47 ` Robert Jarzmik
2010-06-07 8:57 ` Wan ZongShun
2010-06-07 9:31 ` Eric Miao
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).