fixed some mismatching prototypes, sorry for breaking the build

svn path=/trunk/; revision=17972
This commit is contained in:
Thomas Bluemel 2005-09-21 18:24:16 +00:00
parent 7fd1af5d12
commit a8f183303f
2 changed files with 2 additions and 2 deletions

View file

@ -153,7 +153,7 @@ static int ohci_hub_control (
u16 typeReq,
u16 wValue,
u16 wIndex,
char *buf,
u8 *buf,
u16 wLength
) {
struct ohci_hcd *ohci = hcd_to_ohci (hcd);

View file

@ -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 */
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);
int i, status, retval = 0, len = 0;