mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
rtc/mc13783: don't use deprecated mc13783 API calls
mc13783_ackirq, mc13783_unmask and mc13783_mask are deprecated, use the drop in replacements with the nicer names. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Cc: Alessandro Zummo <a.zummo@towertech.it> Cc: Paul Gortmaker <p_gortmaker@yahoo.com> Cc: Valentin Longchamp <valentin.longchamp@epfl.ch> Cc: Sascha Hauer <s.hauer@pengutronix.de> Cc: Samuel Ortiz <sameo@linux.intel.com> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Luotao Fu <l.fu@pengutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2a83319182
commit
4dd4dd655c
1 changed files with 5 additions and 5 deletions
|
@ -101,11 +101,11 @@ static int mc13783_rtc_set_mmss(struct device *dev, unsigned long secs)
|
|||
if (unlikely(ret))
|
||||
goto out;
|
||||
|
||||
ret = mc13783_ackirq(priv->mc13783, MC13783_IRQ_RTCRST);
|
||||
ret = mc13783_irq_ack(priv->mc13783, MC13783_IRQ_RTCRST);
|
||||
if (unlikely(ret))
|
||||
goto out;
|
||||
|
||||
ret = mc13783_unmask(priv->mc13783, MC13783_IRQ_RTCRST);
|
||||
ret = mc13783_irq_unmask(priv->mc13783, MC13783_IRQ_RTCRST);
|
||||
out:
|
||||
priv->valid = !ret;
|
||||
|
||||
|
@ -123,7 +123,7 @@ static irqreturn_t mc13783_rtc_update_handler(int irq, void *dev)
|
|||
|
||||
rtc_update_irq(priv->rtc, 1, RTC_IRQF | RTC_UF);
|
||||
|
||||
mc13783_ackirq(mc13783, irq);
|
||||
mc13783_irq_ack(mc13783, irq);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
@ -138,7 +138,7 @@ static int mc13783_rtc_update_irq_enable(struct device *dev,
|
|||
if (!priv->valid)
|
||||
goto out;
|
||||
|
||||
ret = (enabled ? mc13783_unmask : mc13783_mask)(priv->mc13783,
|
||||
ret = (enabled ? mc13783_irq_unmask : mc13783_irq_mask)(priv->mc13783,
|
||||
MC13783_IRQ_1HZ);
|
||||
out:
|
||||
mc13783_unlock(priv->mc13783);
|
||||
|
@ -160,7 +160,7 @@ static irqreturn_t mc13783_rtc_reset_handler(int irq, void *dev)
|
|||
dev_dbg(&priv->rtc->dev, "RTCRST\n");
|
||||
priv->valid = 0;
|
||||
|
||||
mc13783_mask(mc13783, irq);
|
||||
mc13783_irq_mask(mc13783, irq);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue