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-05-31 14:56:46 +1000
commit230babf623f23aac9f3cb62b56c8ce9a1a885e3c (patch)
treed1722a0842af40d4c2c8ad4abae91353dda6345f
parent6d575c1bbfdd62d623af3e36138566561bd981e0 (diff)
Fix indentation for the synaptics protocol ops
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/synaptics.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/synaptics.c b/src/synaptics.c
index 020d424..b482541 100644
--- a/src/synaptics.c
+++ b/src/synaptics.c
@@ -119,20 +119,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}
};
/*****************************************************************************