summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}
};
/*****************************************************************************