summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Osterlund <petero2@telia.com>2004-04-18 20:43:54 +0200
committerPeter Osterlund <petero2@telia.com>2006-04-09 04:02:13 +0200
commitab2b8a2c4b5f23731c07648a866d8cc3799215ad (patch)
treeccca507b05d9140c78a8d1041e329895f70ed005
parent6df2b83affaa4f2a6756ab857e5d400ae30a87cb (diff)
Fixed inconsistent function name.
-rw-r--r--synaptics.c2
-rw-r--r--synproto.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/synaptics.c b/synaptics.c
index 8dbb71c..63acad6 100644
--- a/synaptics.c
+++ b/synaptics.c
@@ -178,7 +178,7 @@ SetDeviceAndProtocol(LocalDevicePtr local)
} else if (str_par && !strcmp(str_par, "psm")) {
proto = SYN_PROTO_PSM;
} else { /* default to auto-dev */
- if (event_proto_operations.autoDevProbe(local))
+ if (event_proto_operations.AutoDevProbe(local))
proto = SYN_PROTO_EVENT;
}
switch (proto) {
diff --git a/synproto.h b/synproto.h
index 54024fe..0180ed2 100644
--- a/synproto.h
+++ b/synproto.h
@@ -80,7 +80,7 @@ struct SynapticsProtocolOperations {
Bool (*ReadHwState)(LocalDevicePtr local, struct SynapticsHwInfo *synhw,
struct SynapticsProtocolOperations *proto_ops,
struct CommData *comm, struct SynapticsHwState *hwRet);
- Bool (*autoDevProbe)(LocalDevicePtr local);
+ Bool (*AutoDevProbe)(LocalDevicePtr local);
};
extern struct SynapticsProtocolOperations psaux_proto_operations;