From 6a0b016c7c541d52310c8fd767312f2b52e79aeb Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Mon, 19 Apr 2010 21:51:01 +0200 Subject: [PATCH] Completed code documentation for ectty. --- include/ectty.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/ectty.h b/include/ectty.h index e1836377..973ae81d 100644 --- a/include/ectty.h +++ b/include/ectty.h @@ -51,12 +51,13 @@ struct ec_tty; typedef struct ec_tty ec_tty_t; /**< \see ec_tty */ -/** - * \param cflag_changed This callback function is called when the serial - * settings shall be changed. The \a cflag argument contains the new settings. +/** Operations on the virtual TTY interface. */ typedef struct { - int (*cflag_changed)(void *, tcflag_t); + int (*cflag_changed)(void *, tcflag_t); /**< Called when the serial + * settings shall be changed. The + * \a cflag argument contains the + * new settings. */ } ec_tty_operations_t; /******************************************************************************