blob: e14aa2fa082c7cd87246b0be3eed3586a75f7fb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- xf86-input-wacom-0.11.1/src/wcmConfig.c.orig
+++ xf86-input-wacom-0.11.1/src/wcmConfig.c
@@ -373,9 +373,12 @@ wcmDetectDeviceClass(const InputInfoPtr
return TRUE;
/* Bluetooth is also considered as USB */
+#if 0
if (gWacomISDV4Device.Detect(pInfo))
common->wcmDevCls = &gWacomISDV4Device;
- else if (gWacomUSBDevice.Detect(pInfo))
+ else
+#endif
+ if (gWacomUSBDevice.Detect(pInfo))
common->wcmDevCls = &gWacomUSBDevice;
else
xf86Msg(X_ERROR, "%s: cannot identify device class.\n", pInfo->name);
|