reverting part of the I2C delay between writing SCL and DAT since the hardware design does not suffer from the read-modify-write issue I thought it might be.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32539 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen
2009-08-20 16:33:33 +00:00
parent 725ad924ff
commit f72c42f862
@@ -537,10 +537,6 @@ set_signals(void *cookie, int clk, int data)
else
OutSCL(info->port, false);
/* waiting for SCL output to become stable before reading it back.
* ('typical' error-prone read-modify-write situation..) */
snooze(3);
if (data)
OutSDA(info->port, true);
else