Reformat.
[bertos.git] / bertos / drv / kbd.c
index f54ebf91f06ebf9a2b66f334d950fdcaa1961805..6051f2e6c2c87d2dac3c9ac98dadc432bde48a89 100644 (file)
  *
  * -->
  *
+ * \brief Keyboard driver (implementation)
+ *
  * \version $Id$
  *
  * \author Bernardo Innocenti <bernie@develer.com>
  * \author Stefano Fedrigo <aleph@develer.com>
  * \author Francesco Sacchi <batt@develer.com>
  *
- * \brief Keyboard driver (implementation)
  */
 
 #include <hw_kbd.h>
 
+#include <appconfig.h>
+
 #include <drv/timer.h>
 #include <drv/kbd.h>
 
 #include <cfg/debug.h>
 #include <cfg/module.h>
-#include <appconfig.h>
 
 /* Configuration sanity checks */
 #if !defined(CONFIG_KBD_POLL) || (CONFIG_KBD_POLL != KBD_POLL_SOFTINT && CONFIG_KBD_POLL != CONFIG_POLL_FREERTOS)