aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/meta/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/templates/meta/driver.h')
-rw-r--r--os/hal/templates/meta/driver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/templates/meta/driver.h b/os/hal/templates/meta/driver.h
index b3aeb3b0a..a19406719 100644
--- a/os/hal/templates/meta/driver.h
+++ b/os/hal/templates/meta/driver.h
@@ -50,9 +50,9 @@
* @brief Driver state machine possible states.
*/
typedef enum {
- XXX_UNINIT = 0, /**< @brief Not initialized. */
- XXX_STOP = 1, /**< @brief Stopped. */
- XXX_READY = 2, /**< @brief Ready. */
+ XXX_UNINIT = 0, /**< Not initialized. */
+ XXX_STOP = 1, /**< Stopped. */
+ XXX_READY = 2, /**< Ready. */
} xxxstate_t;
#include "xxx_lld.h"