aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-01-04 11:19:31 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-01-04 11:19:31 +0000
commit8bd4ec7b8474fcfce5c4441131f841175d62e0b0 (patch)
treeac28a2d65cfd3193620ac8d95b06c282f2e912ca
parentc8f12b50c2d4c7d051628876a63f0c10115cb5f8 (diff)
downloadChibiOS-8bd4ec7b8474fcfce5c4441131f841175d62e0b0.tar.gz
ChibiOS-8bd4ec7b8474fcfce5c4441131f841175d62e0b0.tar.bz2
ChibiOS-8bd4ec7b8474fcfce5c4441131f841175d62e0b0.zip
Removed two initializations that should go in the low level.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3727 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/hal/src/i2c.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/os/hal/src/i2c.c b/os/hal/src/i2c.c
index 42481a2fd..66b01e0f3 100644
--- a/os/hal/src/i2c.c
+++ b/os/hal/src/i2c.c
@@ -77,8 +77,6 @@ void i2cObjectInit(I2CDriver *i2cp) {
i2cp->state = I2C_STOP;
i2cp->config = NULL;
- i2cp->rxbuf = NULL;
- i2cp->thread = NULL;
#if I2C_USE_MUTUAL_EXCLUSION
#if CH_USE_MUTEXES