aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-09-11 18:19:03 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-09-11 18:19:03 +0000
commitff11f4aa9a4815f3cf4d2a3becba0101cd684a6d (patch)
treee87bf65e5249f0830931acb7ae48a7e96214f1b7 /os/hal
parent9ff43d016e507151e59d2acbf33b701178bbfc90 (diff)
downloadChibiOS-ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d.tar.gz
ChibiOS-ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d.tar.bz2
ChibiOS-ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d.zip
I2C. Remove const qualifier from pointer to I2CSlaveConfig.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3306 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/platforms/STM32/i2c_lld.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/i2c_lld.h b/os/hal/platforms/STM32/i2c_lld.h
index 548b5418e..aa11bb543 100644
--- a/os/hal/platforms/STM32/i2c_lld.h
+++ b/os/hal/platforms/STM32/i2c_lld.h
@@ -212,7 +212,7 @@ struct I2CDriver{
/**
* @brief Current slave configuration data.
*/
- const I2CSlaveConfig *id_slave_config;
+ I2CSlaveConfig *id_slave_config;
__IO size_t txbytes; /*!< @brief Number of bytes to be transmitted. */
__IO size_t rxbytes; /*!< @brief Number of bytes to be received. */