diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-10-16 11:55:16 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-10-16 14:46:20 -0400 |
commit | 20c9be39d3f04d5ff10e76f22e28cc220af1aac4 (patch) | |
tree | 2f8f43e7cb8a9192de0e75edff8a906812c0d6c7 /src/hw/usb-ehci.h | |
parent | bfb7b58b30681f5c421e838fdef3dbc358e80f1e (diff) | |
download | seabios-20c9be39d3f04d5ff10e76f22e28cc220af1aac4.tar.gz |
usb: Rename ?hci_control() to ?hci_send_control()
This is just function renaming - no code implementation changes.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/usb-ehci.h')
-rw-r--r-- | src/hw/usb-ehci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hw/usb-ehci.h b/src/hw/usb-ehci.h index fcb8d949..6346d78a 100644 --- a/src/hw/usb-ehci.h +++ b/src/hw/usb-ehci.h @@ -8,8 +8,8 @@ struct usb_endpoint_descriptor; struct usb_pipe *ehci_alloc_pipe(struct usbdevice_s *usbdev , struct usb_endpoint_descriptor *epdesc); struct usb_pipe; -int ehci_control(struct usb_pipe *p, int dir, const void *cmd, int cmdsize - , void *data, int datasize); +int ehci_send_control(struct usb_pipe *p, int dir, const void *cmd, int cmdsize + , void *data, int datasize); int ehci_send_bulk(struct usb_pipe *p, int dir, void *data, int datasize); int ehci_poll_intr(struct usb_pipe *p, void *data); |