aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_i2c.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_i2c.c b/drivers/gpu/drm/nouveau/nouveau_i2c.c
index 97ba89ef42a0..5588e66dd9fc 100644
--- a/drivers/gpu/drm/nouveau/nouveau_i2c.c
+++ b/drivers/gpu/drm/nouveau/nouveau_i2c.c
@@ -281,12 +281,23 @@ nouveau_i2c_find(struct drm_device *dev, int index)
281bool 281bool
282nouveau_probe_i2c_addr(struct nouveau_i2c_chan *i2c, int addr) 282nouveau_probe_i2c_addr(struct nouveau_i2c_chan *i2c, int addr)
283{ 283{
284 struct i2c_msg msg = { 284 uint8_t buf[] = { 0 };
285 .addr = addr, 285 struct i2c_msg msgs[] = {
286 .len = 0, 286 {
287 .addr = addr,
288 .flags = 0,
289 .len = 1,
290 .buf = buf,
291 },
292 {
293 .addr = addr,
294 .flags = I2C_M_RD,
295 .len = 1,
296 .buf = buf,
297 }
287 }; 298 };
288 299
289 return i2c_transfer(&i2c->adapter, &msg, 1) == 1; 300 return i2c_transfer(&i2c->adapter, msgs, 2) == 2;
290} 301}
291 302
292int 303int