mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
input/mc13783-ts: don't use deprecated mc13783 API calls
mc13783_ackirq is deprecated, use the drop in replacement mc13783_irq_ack. 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> Acked-by: Dmitry Torokhov <dtor@mail.ru> 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
57205026da
commit
2a83319182
@ -44,7 +44,7 @@ static irqreturn_t mc13783_ts_handler(int irq, void *data)
|
||||
{
|
||||
struct mc13783_ts_priv *priv = data;
|
||||
|
||||
mc13783_ackirq(priv->mc13783, irq);
|
||||
mc13783_irq_ack(priv->mc13783, irq);
|
||||
|
||||
/*
|
||||
* Kick off reading coordinates. Note that if work happens already
|
||||
@ -135,7 +135,7 @@ static int mc13783_ts_open(struct input_dev *dev)
|
||||
|
||||
mc13783_lock(priv->mc13783);
|
||||
|
||||
mc13783_ackirq(priv->mc13783, MC13783_IRQ_TS);
|
||||
mc13783_irq_ack(priv->mc13783, MC13783_IRQ_TS);
|
||||
|
||||
ret = mc13783_irq_request(priv->mc13783, MC13783_IRQ_TS,
|
||||
mc13783_ts_handler, MC13783_TS_NAME, priv);
|
||||
|
Loading…
Reference in New Issue
Block a user