hid_dev->ll_driver = &mousevsc_ll_driver;
hid_dev->driver = &mousevsc_hid_driver;
- if (hid_parse_report(hid_dev, packet, len)) {
- DPRINT_INFO(INPUTVSC_DRV, "Unable to call hd_parse_report");
+ if (hid_parse_report(hid_dev, packet, len))
return;
- }
hid_dev->bus = BUS_VIRTUAL;
hid_dev->vendor = input_device->hid_dev_info.vendor;
/* Call to the vsc driver to add the device */
ret = mousevsc_on_device_add(dev, NULL);
- if (ret != 0) {
- DPRINT_ERR(INPUTVSC_DRV, "unable to add input vsc device");
-
+ if (ret != 0)
return -1;
- }
return 0;
}
static int mousevsc_remove(struct hv_device *dev)
{
struct mousevsc_dev *input_dev = hv_get_drvdata(dev);
- int ret;
if (input_dev->connected) {
hidinput_disconnect(input_dev->hid_device);
* Call to the vsc driver to let it know that the device
* is being removed
*/
- ret = mousevsc_on_device_remove(dev);
- if (ret != 0) {
- DPRINT_ERR(INPUTVSC_DRV,
- "unable to remove vsc device (ret %d)", ret);
- }
-
- return ret;
+ return mousevsc_on_device_remove(dev);
}
static const struct hv_vmbus_device_id id_table[] = {