aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorPeter Rosin <peda@axentia.se>2018-06-20 01:17:56 -0400
committerWolfram Sang <wsa@the-dreams.de>2018-07-12 18:08:14 -0400
commit193c2a07cfaacb9249ab0e3d34bce32490879355 (patch)
treec4ecae1dfb367d863a3d0bc8d55f1b23edee4a25 /drivers/input
parentf06c97dd50870c3ccdea0726617a729bb83f5d30 (diff)
input: rohm_bu21023: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT)
Locking the root adapter for __i2c_transfer will deadlock if the device sits behind a mux-locked I2C mux. Switch to the finer-grained i2c_lock_bus with the I2C_LOCK_SEGMENT flag. If the device does not sit behind a mux-locked mux, the two locking variants are equivalent. Signed-off-by: Peter Rosin <peda@axentia.se> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/rohm_bu21023.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/rohm_bu21023.c b/drivers/input/touchscreen/rohm_bu21023.c
index bda0500c9b57..714affdd742f 100644
--- a/drivers/input/touchscreen/rohm_bu21023.c
+++ b/drivers/input/touchscreen/rohm_bu21023.c
@@ -304,7 +304,7 @@ static int rohm_i2c_burst_read(struct i2c_client *client, u8 start, void *buf,
304 msg[1].len = len; 304 msg[1].len = len;
305 msg[1].buf = buf; 305 msg[1].buf = buf;
306 306
307 i2c_lock_adapter(adap); 307 i2c_lock_bus(adap, I2C_LOCK_SEGMENT);
308 308
309 for (i = 0; i < 2; i++) { 309 for (i = 0; i < 2; i++) {
310 if (__i2c_transfer(adap, &msg[i], 1) < 0) { 310 if (__i2c_transfer(adap, &msg[i], 1) < 0) {
@@ -313,7 +313,7 @@ static int rohm_i2c_burst_read(struct i2c_client *client, u8 start, void *buf,
313 } 313 }
314 } 314 }
315 315
316 i2c_unlock_adapter(adap); 316 i2c_unlock_bus(adap, I2C_LOCK_SEGMENT);
317 317
318 return ret; 318 return ret;
319} 319}