2011-03-29 14:47:05

by Xuetao Guan

[permalink] [raw]
Subject: [PATCH] unicore32 rtc driver fix: cleanup irq_set_freq and irq_set_state


Signed-off-by: Guan Xuetao <[email protected]>
---
arch/unicore32/kernel/rtc.c | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/arch/unicore32/kernel/rtc.c b/arch/unicore32/kernel/rtc.c
index c5f0682..8cad70b 100644
--- a/arch/unicore32/kernel/rtc.c
+++ b/arch/unicore32/kernel/rtc.c
@@ -88,11 +88,6 @@ static int puv3_rtc_setpie(struct device *dev, int enabled)
return 0;
}

-static int puv3_rtc_setfreq(struct device *dev, int freq)
-{
- return 0;
-}
-
/* Time read/write */

static int puv3_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
@@ -214,8 +209,6 @@ static const struct rtc_class_ops puv3_rtcops = {
.set_time = puv3_rtc_settime,
.read_alarm = puv3_rtc_getalarm,
.set_alarm = puv3_rtc_setalarm,
- .irq_set_freq = puv3_rtc_setfreq,
- .irq_set_state = puv3_rtc_setpie,
.proc = puv3_rtc_proc,
};

@@ -294,8 +287,6 @@ static int puv3_rtc_probe(struct platform_device *pdev)

puv3_rtc_enable(pdev, 1);

- puv3_rtc_setfreq(&pdev->dev, 1);
-
/* register RTC and exit */

rtc = rtc_device_register("pkunity", &pdev->dev, &puv3_rtcops,
--
1.6.2.2


2011-03-29 14:50:28

by Xuetao Guan

[permalink] [raw]
Subject: RE: [PATCH] unicore32 rtc driver fix: cleanup irq_set_freq and irq_set_state

While modifying my code, I found something error to the modification for drivers/rtc/rtc-s3c.c.
When cleanup irq_set_state, s3c_rtc_setpie() is removed.
However, the function is still used inside the file.

Guan Xuetao

> -----Original Message-----
> From: Guan Xuetao [mailto:[email protected]]
> Sent: Tuesday, March 29, 2011 10:44 PM
> To: '[email protected]'; john stultz ([email protected]); Thomas Gleixner ([email protected])
> Cc: Arnd Bergmann ([email protected]); 'Guan Xuetao' ([email protected]); '[email protected]'; 'rtc-
> [email protected]'
> Subject: [PATCH] unicore32 rtc driver fix: cleanup irq_set_freq and irq_set_state
>
>
> Signed-off-by: Guan Xuetao <[email protected]>
> ---
> arch/unicore32/kernel/rtc.c | 9 ---------
> 1 files changed, 0 insertions(+), 9 deletions(-)
>
> diff --git a/arch/unicore32/kernel/rtc.c b/arch/unicore32/kernel/rtc.c
> index c5f0682..8cad70b 100644
> --- a/arch/unicore32/kernel/rtc.c
> +++ b/arch/unicore32/kernel/rtc.c
> @@ -88,11 +88,6 @@ static int puv3_rtc_setpie(struct device *dev, int enabled)
> return 0;
> }
>
> -static int puv3_rtc_setfreq(struct device *dev, int freq)
> -{
> - return 0;
> -}
> -
> /* Time read/write */
>
> static int puv3_rtc_gettime(struct device *dev, struct rtc_time *rtc_tm)
> @@ -214,8 +209,6 @@ static const struct rtc_class_ops puv3_rtcops = {
> .set_time = puv3_rtc_settime,
> .read_alarm = puv3_rtc_getalarm,
> .set_alarm = puv3_rtc_setalarm,
> - .irq_set_freq = puv3_rtc_setfreq,
> - .irq_set_state = puv3_rtc_setpie,
> .proc = puv3_rtc_proc,
> };
>
> @@ -294,8 +287,6 @@ static int puv3_rtc_probe(struct platform_device *pdev)
>
> puv3_rtc_enable(pdev, 1);
>
> - puv3_rtc_setfreq(&pdev->dev, 1);
> -
> /* register RTC and exit */
>
> rtc = rtc_device_register("pkunity", &pdev->dev, &puv3_rtcops,
> --
> 1.6.2.2