diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-05-21 10:54:19 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-06-05 09:48:20 +1000 |
commit | 7decf4666fcc7a0a1c3a070abec876439dc8f376 (patch) | |
tree | 0fbf06223f23bd0f5e8a713229804db21c7ca092 /src/synaptics.c | |
parent | f3abb163c3c216f48a5f4624b12c32e496336513 (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>
Diffstat (limited to 'src/synaptics.c')
-rw-r--r-- | src/synaptics.c | 14 |
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 = { |