summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2012-05-21 10:54:19 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2012-06-05 09:48:20 +1000
commit7decf4666fcc7a0a1c3a070abec876439dc8f376 (patch)
tree0fbf06223f23bd0f5e8a713229804db21c7ca092
parentf3abb163c3c216f48a5f4624b12c32e496336513 (diff)
Fix indentation for the synaptics protocol ops
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
-rw-r--r--src/synaptics.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/synaptics.c b/src/synaptics.c
index 1b65918..b7d23b7 100644
--- a/src/synaptics.c
+++ b/src/synaptics.c
@@ -147,20 +147,16 @@ const static struct {
struct SynapticsProtocolOperations *proto_ops;
} protocols[] = {
#ifdef BUILD_EVENTCOMM
- {
- "event", &event_proto_operations},
+ { "event", &event_proto_operations },
#endif
#ifdef BUILD_PSMCOMM
- {
- "psm", &psm_proto_operations},
+ { "psm", &psm_proto_operations },
#endif
#ifdef BUILD_PS2COMM
- {
- "psaux", &psaux_proto_operations}, {
- "alps", &alps_proto_operations},
+ { "psaux", &psaux_proto_operations },
+ { "alps", &alps_proto_operations },
#endif
- {
- NULL, NULL}
+ { NULL, NULL }
};
InputDriverRec SYNAPTICS = {