From f0b1dbdc00bda57c62199cbdc44acbadbb1121b0 Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Mon, 1 Feb 2010 22:03:33 +0100 Subject: janitor: stick to kernel-style formatting With this commit, the whole code base complies with the kernel format style, and patches can be checked against the kernel-provided ./scripts/checkpatch.pl --- src/hwdata.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/hwdata.c') 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) { } - -/******************************************************/ -- cgit v1.2.3