Lines 672-677
Link Here
|
672 |
if (errno != EAGAIN && errno != EINTR) |
672 |
if (errno != EAGAIN && errno != EINTR) |
673 |
LogMessageVerbSigSafe(X_ERROR, 0, |
673 |
LogMessageVerbSigSafe(X_ERROR, 0, |
674 |
"%s: Error reading wacom device : %s\n", pInfo->name, strerror(errno)); |
674 |
"%s: Error reading wacom device : %s\n", pInfo->name, strerror(errno)); |
|
|
675 |
/* BSD specific code. */ |
676 |
/* Hotplug code does not send remove dev notify because |
677 |
* opened cuse dev cant be removed. */ |
678 |
if (errno == EINVAL) |
679 |
DeleteInputDeviceRequest(pInfo->dev); |
680 |
|
675 |
return; |
681 |
return; |
676 |
} |
682 |
} |
677 |
|
683 |
|