Commit 61cf3813 authored by Felipe Balbi's avatar Felipe Balbi Committed by Dmitry Torokhov

Input: lm8323 - convert to threaded IRQ

There's no need for that workqueue anymore. Get rid of it and move to
threaded IRQs instead.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Tested-by: default avatarLeigh Brown <leigh@solinno.co.uk>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent fef95fae
...@@ -146,7 +146,6 @@ struct lm8323_chip { ...@@ -146,7 +146,6 @@ struct lm8323_chip {
/* device lock */ /* device lock */
struct mutex lock; struct mutex lock;
struct i2c_client *client; struct i2c_client *client;
struct work_struct work;
struct input_dev *idev; struct input_dev *idev;
bool kp_enabled; bool kp_enabled;
bool pm_suspend; bool pm_suspend;
...@@ -162,7 +161,6 @@ struct lm8323_chip { ...@@ -162,7 +161,6 @@ struct lm8323_chip {
#define client_to_lm8323(c) container_of(c, struct lm8323_chip, client) #define client_to_lm8323(c) container_of(c, struct lm8323_chip, client)
#define dev_to_lm8323(d) container_of(d, struct lm8323_chip, client->dev) #define dev_to_lm8323(d) container_of(d, struct lm8323_chip, client->dev)
#define work_to_lm8323(w) container_of(w, struct lm8323_chip, work)
#define cdev_to_pwm(c) container_of(c, struct lm8323_pwm, cdev) #define cdev_to_pwm(c) container_of(c, struct lm8323_pwm, cdev)
#define work_to_pwm(w) container_of(w, struct lm8323_pwm, work) #define work_to_pwm(w) container_of(w, struct lm8323_pwm, work)
...@@ -375,9 +373,9 @@ static void pwm_done(struct lm8323_pwm *pwm) ...@@ -375,9 +373,9 @@ static void pwm_done(struct lm8323_pwm *pwm)
* Bottom half: handle the interrupt by posting key events, or dealing with * Bottom half: handle the interrupt by posting key events, or dealing with
* errors appropriately. * errors appropriately.
*/ */
static void lm8323_work(struct work_struct *work) static irqreturn_t lm8323_irq(int irq, void *_lm)
{ {
struct lm8323_chip *lm = work_to_lm8323(work); struct lm8323_chip *lm = _lm;
u8 ints; u8 ints;
int i; int i;
...@@ -409,16 +407,6 @@ static void lm8323_work(struct work_struct *work) ...@@ -409,16 +407,6 @@ static void lm8323_work(struct work_struct *work)
} }
mutex_unlock(&lm->lock); mutex_unlock(&lm->lock);
}
/*
* We cannot use I2C in interrupt context, so we just schedule work.
*/
static irqreturn_t lm8323_irq(int irq, void *data)
{
struct lm8323_chip *lm = data;
schedule_work(&lm->work);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
...@@ -675,7 +663,6 @@ static int __devinit lm8323_probe(struct i2c_client *client, ...@@ -675,7 +663,6 @@ static int __devinit lm8323_probe(struct i2c_client *client,
lm->client = client; lm->client = client;
lm->idev = idev; lm->idev = idev;
mutex_init(&lm->lock); mutex_init(&lm->lock);
INIT_WORK(&lm->work, lm8323_work);
lm->size_x = pdata->size_x; lm->size_x = pdata->size_x;
lm->size_y = pdata->size_y; lm->size_y = pdata->size_y;
...@@ -746,9 +733,8 @@ static int __devinit lm8323_probe(struct i2c_client *client, ...@@ -746,9 +733,8 @@ static int __devinit lm8323_probe(struct i2c_client *client,
goto fail3; goto fail3;
} }
err = request_irq(client->irq, lm8323_irq, err = request_threaded_irq(client->irq, NULL, lm8323_irq,
IRQF_TRIGGER_FALLING | IRQF_DISABLED, IRQF_TRIGGER_FALLING, "lm8323", lm);
"lm8323", lm);
if (err) { if (err) {
dev_err(&client->dev, "could not get IRQ %d\n", client->irq); dev_err(&client->dev, "could not get IRQ %d\n", client->irq);
goto fail4; goto fail4;
...@@ -783,7 +769,6 @@ static int __devexit lm8323_remove(struct i2c_client *client) ...@@ -783,7 +769,6 @@ static int __devexit lm8323_remove(struct i2c_client *client)
disable_irq_wake(client->irq); disable_irq_wake(client->irq);
free_irq(client->irq, lm); free_irq(client->irq, lm);
cancel_work_sync(&lm->work);
input_unregister_device(lm->idev); input_unregister_device(lm->idev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment