From 7f06b944cda28d334d790969c6483a11ed3b04d4 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 26 Nov 2009 21:19:03 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1328 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/io/templates/can_lld.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'os/io/templates/can_lld.c') diff --git a/os/io/templates/can_lld.c b/os/io/templates/can_lld.c index 4fc0ae7d0..e1c4243b0 100644 --- a/os/io/templates/can_lld.c +++ b/os/io/templates/can_lld.c @@ -93,8 +93,8 @@ bool_t can_lld_can_transmit(CANDriver *canp) { /** * @brief Inserts a frame into the transmit queue. * - * @param canp[in] pointer to the @p CANDriver object - * @param cfp[in] pointer to the CAN frame to be transmitted + * @param[in] canp pointer to the @p CANDriver object + * @param[in] cfp pointer to the CAN frame to be transmitted * * @return The operation status. * @retval RDY_OK frame transmitted. @@ -121,8 +121,8 @@ bool_t can_lld_can_receive(CANDriver *canp) { /** * @brief Receives a frame from the input queue. * - * @param canp[in] pointer to the @p CANDriver object - * @param cfp[out] pointer to the buffer where the CAN frame is copied + * @param[in] canp pointer to the @p CANDriver object + * @param[out] cfp pointer to the buffer where the CAN frame is copied * * @return The operation status. * @retval RDY_OK frame received. @@ -136,7 +136,7 @@ msg_t can_lld_receive(CANDriver *canp, CANFrame *cfp) { /** * @brief Enters the sleep mode. * - * @param canp[in] pointer to the @p CANDriver object + * @param[in] canp pointer to the @p CANDriver object */ void can_lld_sleep(CANDriver *canp) { @@ -145,7 +145,7 @@ void can_lld_sleep(CANDriver *canp) { /** * @brief Enforces leaving the sleep mode. * - * @param canp[in] pointer to the @p CANDriver object + * @param[in] canp pointer to the @p CANDriver object */ void can_lld_wakeup(CANDriver *canp) { -- cgit v1.2.3