mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00:00
fixed some mismatching prototypes, sorry for breaking the build
svn path=/trunk/; revision=17972
This commit is contained in:
parent
7fd1af5d12
commit
a8f183303f
2 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ static int ohci_hub_control (
|
||||||
u16 typeReq,
|
u16 typeReq,
|
||||||
u16 wValue,
|
u16 wValue,
|
||||||
u16 wIndex,
|
u16 wIndex,
|
||||||
char *buf,
|
u8 *buf,
|
||||||
u16 wLength
|
u16 wLength
|
||||||
) {
|
) {
|
||||||
struct ohci_hcd *ohci = hcd_to_ohci (hcd);
|
struct ohci_hcd *ohci = hcd_to_ohci (hcd);
|
||||||
|
|
|
@ -54,7 +54,7 @@ static int uhci_hub_status_data(struct usb_hcd *hcd, char *buf)
|
||||||
|
|
||||||
/* size of returned buffer is part of USB spec */
|
/* size of returned buffer is part of USB spec */
|
||||||
static int uhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
|
static int uhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
|
||||||
u16 wIndex, char *buf, u16 wLength)
|
u16 wIndex, u8 *buf, u16 wLength)
|
||||||
{
|
{
|
||||||
struct uhci_hcd *uhci = hcd_to_uhci(hcd);
|
struct uhci_hcd *uhci = hcd_to_uhci(hcd);
|
||||||
int i, status, retval = 0, len = 0;
|
int i, status, retval = 0, len = 0;
|
||||||
|
|
Loading…
Reference in a new issue