diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2015-02-18 18:54:06 +0000 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2015-02-18 18:54:06 +0000 |
commit | 283f56b0137de8e02903426da09489be01f1ff2b (patch) | |
tree | 73796badfb4ccdaa331b8aa9ea9945be9a2787f4 | |
parent | e031b603dfd817f59f83ee2432414425ff9128e0 (diff) | |
download | ChibiOS-283f56b0137de8e02903426da09489be01f1ff2b.tar.gz ChibiOS-283f56b0137de8e02903426da09489be01f1ff2b.tar.bz2 ChibiOS-283f56b0137de8e02903426da09489be01f1ff2b.zip |
SDIO. Deleted ChibiOS/RT specific check from HAL.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7689 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/STM32/LLD/sdc_lld.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/os/hal/ports/STM32/LLD/sdc_lld.h b/os/hal/ports/STM32/LLD/sdc_lld.h index 9fbd4a3fd..428ef1568 100644 --- a/os/hal/ports/STM32/LLD/sdc_lld.h +++ b/os/hal/ports/STM32/LLD/sdc_lld.h @@ -277,13 +277,11 @@ struct SDCDriver { * @brief Transmit DMA channel.
*/
const stm32_dma_stream_t *dma;
-#if CH_DBG_ENABLE_ASSERTS || defined(__DOXYGEN__)
/**
* @brief Pointer to the SDIO registers block.
- * @note Used only for dubugging purpose.
+ * @note Needed for dubugging aid.
*/
SDIO_TypeDef *sdio;
-#endif
};
/*===========================================================================*/
|