include: drivers: CAN: changed return parameter description
Changed return parameter description from "@retval filter id on success" to "@retval filter_id on success". This change suppresses the doxy warnings. Signed-off-by: Alexander Wachter <alexander.wachter@student.tugraz.at>
This commit is contained in:
parent
5b0a7d3523
commit
1c7892df3f
2 changed files with 5 additions and 5 deletions
|
@ -374,7 +374,7 @@ static inline int can_write(struct device *dev, const u8_t *data, u8_t length,
|
|||
* @param filter Pointer to a zcan_filter structure defining the id
|
||||
* filtering.
|
||||
*
|
||||
* @retval filter id on success.
|
||||
* @retval filter_id on success.
|
||||
* @retval CAN_NO_FREE_FILTER if there is no filter left.
|
||||
*/
|
||||
int can_attach_workq(struct device *dev, struct k_work_q *work_q,
|
||||
|
@ -398,7 +398,7 @@ int can_attach_workq(struct device *dev, struct k_work_q *work_q,
|
|||
* @param filter Pointer to a zcan_filter structure defining the id
|
||||
* filtering.
|
||||
*
|
||||
* @retval filter id on success.
|
||||
* @retval filter_id on success.
|
||||
* @retval CAN_NO_FREE_FILTER if there is no filter left.
|
||||
*/
|
||||
__syscall int can_attach_msgq(struct device *dev, struct k_msgq *msg_q,
|
||||
|
@ -420,7 +420,7 @@ __syscall int can_attach_msgq(struct device *dev, struct k_msgq *msg_q,
|
|||
* @param filter Pointer to a zcan_filter structure defining the id
|
||||
* filtering.
|
||||
*
|
||||
* @retval filter id on success.
|
||||
* @retval filter_id on success.
|
||||
* @retval CAN_NO_FREE_FILTER if there is no filter left.
|
||||
*/
|
||||
static inline int can_attach_isr(struct device *dev,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue