From c2693bcad09b0fa5e5fbf323d3e23c8ee0a2e1dc Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 14 May 2011 08:27:27 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2958 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32/platform.dox | 1 - os/hal/platforms/STM32/sdc_lld.c | 9 +++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'os/hal/platforms') diff --git a/os/hal/platforms/STM32/platform.dox b/os/hal/platforms/STM32/platform.dox index 1963e625e..50ab84f38 100644 --- a/os/hal/platforms/STM32/platform.dox +++ b/os/hal/platforms/STM32/platform.dox @@ -221,7 +221,6 @@ * - Programmable interrupt priority. * - DMA is used for receiving and transmitting. * - Programmable DMA bus priority for each DMA channel. - * - Programmable DMA error hook. * . * @ingroup STM32_DRIVERS */ diff --git a/os/hal/platforms/STM32/sdc_lld.c b/os/hal/platforms/STM32/sdc_lld.c index 6f2ea95ba..755fdf5ab 100644 --- a/os/hal/platforms/STM32/sdc_lld.c +++ b/os/hal/platforms/STM32/sdc_lld.c @@ -180,6 +180,7 @@ void sdc_lld_stop_clk(SDCDriver *sdcp) { * @brief Switches the bus to 4 bits mode. * * @param[in] sdcp pointer to the @p SDCDriver object + * @param[in] mode bus mode * * @notapi */ @@ -203,7 +204,7 @@ void sdc_lld_set_bus_mode(SDCDriver *sdcp, sdcbusmode_t mode) { * @brief Sends an SDIO command with no response expected. * * @param[in] sdcp pointer to the @p SDCDriver object - * @param[in[ cmd card command + * @param[in] cmd card command * @param[in] arg command argument * * @notapi @@ -223,7 +224,7 @@ void sdc_lld_send_cmd_none(SDCDriver *sdcp, uint8_t cmd, uint32_t arg) { * @note The CRC is not verified. * * @param[in] sdcp pointer to the @p SDCDriver object - * @param[in[ cmd card command + * @param[in] cmd card command * @param[in] arg command argument * @param[out] resp pointer to the response buffer (one word) * @return The operation status. @@ -254,7 +255,7 @@ bool_t sdc_lld_send_cmd_short(SDCDriver *sdcp, uint8_t cmd, uint32_t arg, * @brief Sends an SDIO command with a short response expected and CRC. * * @param[in] sdcp pointer to the @p SDCDriver object - * @param[in[ cmd card command + * @param[in] cmd card command * @param[in] arg command argument * @param[out] resp pointer to the response buffer (one word) * @return The operation status. @@ -285,7 +286,7 @@ bool_t sdc_lld_send_cmd_short_crc(SDCDriver *sdcp, uint8_t cmd, uint32_t arg, * @brief Sends an SDIO command with a long response expected and CRC. * * @param[in] sdcp pointer to the @p SDCDriver object - * @param[in[ cmd card command + * @param[in] cmd card command * @param[in] arg command argument * @param[out] resp pointer to the response buffer (four words) * @return The operation status. -- cgit v1.2.3