summaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorSven Van Asbroeck <TheSven73@gmail.com>2019-02-11 17:15:54 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2019-02-17 00:39:42 -0500
commitbab4a6cca024dc202b1e893edbe34f58f1d43f3e (patch)
tree59f04d942adf96534195a5b48db8a6fae3b341f7 /drivers/input
parent16ab4f43eb953277e915115c1d811d2a518d6bf2 (diff)
Input: qt2160 - remove redundant spinlock
Remove a spinlock which prevents schedule_delayed_work() and mod_delayed_work() from executing concurrently. This was required back when mod_delayed_work() did not exist, and had to be implemented with a cancel + schedule. See commit e7c2f967445d ("workqueue: use mod_delayed_work() instead of __cancel + queue") schedule_delayed_work() and mod_delayed_work() can now be used concurrently. So the spinlock is no longer needed. Signed-off-by: Sven Van Asbroeck <TheSven73@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/keyboard/qt2160.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/input/keyboard/qt2160.c b/drivers/input/keyboard/qt2160.c
index 43b86482dda0..23dc7c0c7d78 100644
--- a/drivers/input/keyboard/qt2160.c
+++ b/drivers/input/keyboard/qt2160.c
@@ -69,7 +69,6 @@ struct qt2160_data {
69 struct i2c_client *client; 69 struct i2c_client *client;
70 struct input_dev *input; 70 struct input_dev *input;
71 struct delayed_work dwork; 71 struct delayed_work dwork;
72 spinlock_t lock; /* Protects canceling/rescheduling of dwork */
73 unsigned short keycodes[ARRAY_SIZE(qt2160_key2code)]; 72 unsigned short keycodes[ARRAY_SIZE(qt2160_key2code)];
74 u16 key_matrix; 73 u16 key_matrix;
75#ifdef CONFIG_LEDS_CLASS 74#ifdef CONFIG_LEDS_CLASS
@@ -221,22 +220,15 @@ static int qt2160_get_key_matrix(struct qt2160_data *qt2160)
221static irqreturn_t qt2160_irq(int irq, void *_qt2160) 220static irqreturn_t qt2160_irq(int irq, void *_qt2160)
222{ 221{
223 struct qt2160_data *qt2160 = _qt2160; 222 struct qt2160_data *qt2160 = _qt2160;
224 unsigned long flags;
225
226 spin_lock_irqsave(&qt2160->lock, flags);
227 223
228 mod_delayed_work(system_wq, &qt2160->dwork, 0); 224 mod_delayed_work(system_wq, &qt2160->dwork, 0);
229 225
230 spin_unlock_irqrestore(&qt2160->lock, flags);
231
232 return IRQ_HANDLED; 226 return IRQ_HANDLED;
233} 227}
234 228
235static void qt2160_schedule_read(struct qt2160_data *qt2160) 229static void qt2160_schedule_read(struct qt2160_data *qt2160)
236{ 230{
237 spin_lock_irq(&qt2160->lock);
238 schedule_delayed_work(&qt2160->dwork, QT2160_CYCLE_INTERVAL); 231 schedule_delayed_work(&qt2160->dwork, QT2160_CYCLE_INTERVAL);
239 spin_unlock_irq(&qt2160->lock);
240} 232}
241 233
242static void qt2160_worker(struct work_struct *work) 234static void qt2160_worker(struct work_struct *work)
@@ -406,7 +398,6 @@ static int qt2160_probe(struct i2c_client *client,
406 qt2160->client = client; 398 qt2160->client = client;
407 qt2160->input = input; 399 qt2160->input = input;
408 INIT_DELAYED_WORK(&qt2160->dwork, qt2160_worker); 400 INIT_DELAYED_WORK(&qt2160->dwork, qt2160_worker);
409 spin_lock_init(&qt2160->lock);
410 401
411 input->name = "AT42QT2160 Touch Sense Keyboard"; 402 input->name = "AT42QT2160 Touch Sense Keyboard";
412 input->id.bustype = BUS_I2C; 403 input->id.bustype = BUS_I2C;