aboutsummaryrefslogtreecommitdiffstats
path: root/src/hwdata.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hwdata.c')
-rw-r--r--src/hwdata.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/hwdata.c b/src/hwdata.c
index 3b7c41c..bd42710 100644
--- a/src/hwdata.c
+++ b/src/hwdata.c
@@ -21,16 +21,12 @@
#include "hwdata.h"
-/******************************************************/
-
void init_hwdata(struct HWData *hw)
{
memset(hw, 0, sizeof(struct HWData));
}
-/******************************************************/
-
-bool read_hwdata(struct HWData *hw, const struct input_event* ev)
+int read_hwdata(struct HWData *hw, const struct input_event* ev)
{
switch (ev->type) {
case EV_SYN:
@@ -97,10 +93,6 @@ bool read_hwdata(struct HWData *hw, const struct input_event* ev)
return 0;
}
-/******************************************************/
-
void output_hwdata(const struct HWData *hw)
{
}
-
-/******************************************************/