summaryrefslogtreecommitdiff
path: root/driver/xf86-input-usbtablet/src
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2010-07-25 14:15:50 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2010-07-25 14:15:50 +0000
commit5c50edecc644ca16541edae3c203bf25417eea41 (patch)
tree7d177f9344e29975d5ce1017a2f35c36acb841d8 /driver/xf86-input-usbtablet/src
parenta7e1cee73d0a4b4acac5e86b31d669169e40f02f (diff)
LocalDevicePtr and InputInfoPtr are the same. Use the latter everywhere
for consistency. No code change.
Diffstat (limited to 'driver/xf86-input-usbtablet/src')
-rw-r--r--driver/xf86-input-usbtablet/src/usbtablet.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/driver/xf86-input-usbtablet/src/usbtablet.c b/driver/xf86-input-usbtablet/src/usbtablet.c
index 4c9943f25..ae28724a1 100644
--- a/driver/xf86-input-usbtablet/src/usbtablet.c
+++ b/driver/xf86-input-usbtablet/src/usbtablet.c
@@ -24,7 +24,7 @@
* SUCH DAMAGE.
*/
-/* $OpenBSD: usbtablet.c,v 1.6 2009/11/26 21:30:19 matthieu Exp $ */
+/* $OpenBSD: usbtablet.c,v 1.7 2010/07/25 14:15:49 matthieu Exp $ */
/*
* Driver for USB HID tablet devices.
@@ -111,9 +111,9 @@ struct USBTDevice {
static MODULESETUPPROTO(SetupProc);
static void TearDownProc(pointer);
-static LocalDevicePtr UsbTabletAllocateStylus(InputDriverPtr);
-static LocalDevicePtr UsbTabletAllocateEraser(InputDriverPtr);
-static LocalDevicePtr UsbTabletAllocate(InputDriverPtr, char *, int);
+static InputInfoPtr UsbTabletAllocateStylus(InputDriverPtr);
+static InputInfoPtr UsbTabletAllocateEraser(InputDriverPtr);
+static InputInfoPtr UsbTabletAllocate(InputDriverPtr, char *, int);
static InputInfoPtr UsbTabletPreInit(InputDriverPtr, IDevPtr, int);
static int UsbTabletProc(DeviceIntPtr, int);
static void UsbTabletReadInput(InputInfoPtr);