Fix compiler warnings.
Submitted by: Alexander Best (arundel) Approved by: thompsa (mentor)
This commit is contained in:
parent
31f7072c3b
commit
876cab6fc2
@ -672,7 +672,7 @@ uhid_attach(device_t dev)
|
||||
if (uaa->info.idProduct == USB_PRODUCT_WACOM_GRAPHIRE) {
|
||||
|
||||
sc->sc_repdesc_size = sizeof(uhid_graphire_report_descr);
|
||||
sc->sc_repdesc_ptr = &uhid_graphire_report_descr;
|
||||
sc->sc_repdesc_ptr = (void *)&uhid_graphire_report_descr;
|
||||
sc->sc_flags |= UHID_FLAG_STATIC_DESC;
|
||||
|
||||
} else if (uaa->info.idProduct == USB_PRODUCT_WACOM_GRAPHIRE3_4X5) {
|
||||
@ -693,7 +693,7 @@ uhid_attach(device_t dev)
|
||||
usbd_errstr(error));
|
||||
}
|
||||
sc->sc_repdesc_size = sizeof(uhid_graphire3_4x5_report_descr);
|
||||
sc->sc_repdesc_ptr = &uhid_graphire3_4x5_report_descr;
|
||||
sc->sc_repdesc_ptr = (void *)&uhid_graphire3_4x5_report_descr;
|
||||
sc->sc_flags |= UHID_FLAG_STATIC_DESC;
|
||||
}
|
||||
} else if ((uaa->info.bInterfaceClass == UICLASS_VENDOR) &&
|
||||
@ -702,7 +702,7 @@ uhid_attach(device_t dev)
|
||||
|
||||
/* the Xbox 360 gamepad has no report descriptor */
|
||||
sc->sc_repdesc_size = sizeof(uhid_xb360gp_report_descr);
|
||||
sc->sc_repdesc_ptr = &uhid_xb360gp_report_descr;
|
||||
sc->sc_repdesc_ptr = (void *)&uhid_xb360gp_report_descr;
|
||||
sc->sc_flags |= UHID_FLAG_STATIC_DESC;
|
||||
}
|
||||
if (sc->sc_repdesc_ptr == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user