summaryrefslogtreecommitdiff
path: root/protocol/serial_mouse.h
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2014-07-27 17:18:14 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2014-07-27 17:38:31 +0200
commit0bfba7acc4e05e66c8ab448286fc51bc94d03a57 (patch)
tree9552d87e289c4dcffd401decd6fd10d99ee5d35e /protocol/serial_mouse.h
parent7dde35d4f7cc3cc1569a31e752ea4043133b1a72 (diff)
factored out serial_mouse_init() into serial_mouse.h
Diffstat (limited to 'protocol/serial_mouse.h')
-rw-r--r--protocol/serial_mouse.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/protocol/serial_mouse.h b/protocol/serial_mouse.h
index c3c19d7696..2ccd3d900c 100644
--- a/protocol/serial_mouse.h
+++ b/protocol/serial_mouse.h
@@ -20,7 +20,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <stdint.h>
-uint8_t serial_mouse_init(void);
+#include "serial.h"
+
+static inline uint8_t serial_mouse_init(void)
+{
+ serial_init();
+ return 0;
+}
+
void serial_mouse_task(void);
#endif