summaryrefslogtreecommitdiff
path: root/src/rhd_i2c.c
diff options
context:
space:
mode:
authorEgbert Eich <eich@freedesktop.org>2007-10-15 20:06:08 +0200
committerEgbert Eich <eich@freedesktop.org>2007-10-15 20:06:08 +0200
commit2ffd2af87b19bcddf30348e875a03dab7724fade (patch)
tree5049ffcbcf2438e546309fa55f0e17ed57a5f8e4 /src/rhd_i2c.c
parentba33954c52d92d8cbf634bbdc9b6a033e381eb5b (diff)
Fix wrong setting of the I2C ARBITRATION bits for R6xx.
Diffstat (limited to 'src/rhd_i2c.c')
-rw-r--r--src/rhd_i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rhd_i2c.c b/src/rhd_i2c.c
index 7ed1bb3..937f41c 100644
--- a/src/rhd_i2c.c
+++ b/src/rhd_i2c.c
@@ -383,7 +383,7 @@ rhd6xxI2CSetupStatus(I2CBusPtr I2CPtr, int line, int prescale)
}
RHDRegWrite(I2CPtr, R6_DC_I2C_CONTROL, line << 8);
RHDRegMask(I2CPtr, R6_DC_I2C_INTERRUPT_CONTROL, 0x2, 0x2);
- RHDRegMask(I2CPtr, R6_DC_I2C_ARBITRATION, 0, 0x00);
+ RHDRegMask(I2CPtr, R6_DC_I2C_ARBITRATION, 0, 0xff);
return TRUE;
}