summaryrefslogtreecommitdiffstats
path: root/cpu/at91rm9200/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/at91rm9200/i2c.c')
-rw-r--r--cpu/at91rm9200/i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/at91rm9200/i2c.c b/cpu/at91rm9200/i2c.c
index 515792c7e8..c12d2dd1a6 100644
--- a/cpu/at91rm9200/i2c.c
+++ b/cpu/at91rm9200/i2c.c
@@ -42,7 +42,7 @@ static int debug = 0;
static short at91_poll_status(AT91PS_TWI twi, unsigned long bit) {
int loop_cntr = 10000;
do {
- udelay(100);
+ udelay(10);
} while (!(twi->TWI_SR & bit) && (--loop_cntr > 0));
return (loop_cntr > 0);
OpenPOWER on IntegriCloud