RTC: Cleanup rtc_class_ops->irq_set_state
With PIE mode interrupts now emulated in generic code via an hrtimer, no one calls rtc_class_ops->irq_set_state(), so this patch removes it along with driver implementations. CC: Thomas Gleixner <tglx@linutronix.de> CC: Alessandro Zummo <a.zummo@towertech.it> CC: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br> CC: rtc-linux@googlegroups.com Signed-off-by: John Stultz <john.stultz@linaro.org>
This commit is contained in:
parent
f44f7f96a2
commit
80d4bb515b
11 changed files with 0 additions and 209 deletions
|
@ -227,16 +227,6 @@ static int vr41xx_rtc_irq_set_freq(struct device *dev, int freq)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int vr41xx_rtc_irq_set_state(struct device *dev, int enabled)
|
||||
{
|
||||
if (enabled)
|
||||
enable_irq(pie_irq);
|
||||
else
|
||||
disable_irq(pie_irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int vr41xx_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
|
||||
{
|
||||
switch (cmd) {
|
||||
|
@ -309,7 +299,6 @@ static const struct rtc_class_ops vr41xx_rtc_ops = {
|
|||
.read_alarm = vr41xx_rtc_read_alarm,
|
||||
.set_alarm = vr41xx_rtc_set_alarm,
|
||||
.irq_set_freq = vr41xx_rtc_irq_set_freq,
|
||||
.irq_set_state = vr41xx_rtc_irq_set_state,
|
||||
};
|
||||
|
||||
static int __devinit rtc_probe(struct platform_device *pdev)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue