summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Osterlund <petero2@telia.com>2005-01-06 00:13:30 +0100
committerPeter Osterlund <petero2@telia.com>2006-04-09 04:03:03 +0200
commit7ad9b2ce77ed704b4a2537de85d81b1aaa82efaa (patch)
tree49cb45858b1107fca45e16e455913e8068e85c48
parent996d47af5768c12fd45d9f1804ef6b952acddf7b (diff)
Made QueryHardware() static.
-rw-r--r--synaptics.c3
-rw-r--r--synaptics.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/synaptics.c b/synaptics.c
index 753369b..c8ce0c1 100644
--- a/synaptics.c
+++ b/synaptics.c
@@ -122,6 +122,7 @@ static Bool DeviceInit(DeviceIntPtr);
static Bool DeviceOn(DeviceIntPtr);
static Bool DeviceOff(DeviceIntPtr);
static Bool DeviceClose(DeviceIntPtr);
+static Bool QueryHardware(LocalDevicePtr);
InputDriverRec SYNAPTICS = {
@@ -1639,7 +1640,7 @@ ConvertProc(LocalDevicePtr local,
}
-Bool
+static Bool
QueryHardware(LocalDevicePtr local)
{
SynapticsPrivate *priv = (SynapticsPrivate *) local->private;
diff --git a/synaptics.h b/synaptics.h
index ba49671..7369b1b 100644
--- a/synaptics.h
+++ b/synaptics.h
@@ -194,8 +194,6 @@ typedef struct _SynapticsPrivateRec
} SynapticsPrivate;
-Bool QueryHardware(LocalDevicePtr);
-
#endif /* SYNAPTICS_PRIVATE */