Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293612
b: refs/heads/master
c: 9292f37
h: refs/heads/master
v: v3
  • Loading branch information
Eugeni Dodonov authored and Dave Airlie committed Feb 3, 2012
1 parent 0063b26 commit 366ce8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 30388c6e48e62b2806b14552275f091e2f5adbf4
refs/heads/master: 9292f37e1f5c79400254dca46f83313488093825
5 changes: 5 additions & 0 deletions trunk/drivers/gpu/drm/drm_edid.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,11 @@ drm_do_probe_ddc_edid(struct i2c_adapter *adapter, unsigned char *buf,
}
};
ret = i2c_transfer(adapter, msgs, 2);
if (ret == -ENXIO) {
DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n",
adapter->name);
break;
}
} while (ret != 2 && --retries);

return ret == 2 ? 0 : -1;
Expand Down

0 comments on commit 366ce8c

Please sign in to comment.