aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/i2c.c
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-06 18:09:34 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-06 18:09:34 +0000
commit2db3c769f1abba36a1e7a843d83e5006de58cbd5 (patch)
tree85cd7ea7d80ad07b6c093c709dea54cf3babafce /os/hal/src/i2c.c
parentd34bc423c805e7724898427cb5c4cfe69f596f30 (diff)
downloadChibiOS-2db3c769f1abba36a1e7a843d83e5006de58cbd5.tar.gz
ChibiOS-2db3c769f1abba36a1e7a843d83e5006de58cbd5.tar.bz2
ChibiOS-2db3c769f1abba36a1e7a843d83e5006de58cbd5.zip
I2C. Bug fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3562 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/i2c.c')
-rw-r--r--os/hal/src/i2c.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/os/hal/src/i2c.c b/os/hal/src/i2c.c
index 9f443be6c..4b9160a68 100644
--- a/os/hal/src/i2c.c
+++ b/os/hal/src/i2c.c
@@ -238,7 +238,6 @@ void i2cAddFlagsI(I2CDriver *i2cp, i2cflags_t mask) {
chDbgCheck(i2cp != NULL, "i2cAddFlagsI");
i2cp->errors |= mask;
- chEvtBroadcastI(&i2cp->sevent);
}
/**