diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-10-16 12:08:00 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-10-16 14:46:32 -0400 |
commit | 674f140b300a27550c02efef31b35a7add243c02 (patch) | |
tree | 6d07411e043b4d60dc2cc1530ab9e26bf74e4c9a /src/hw/usb.h | |
parent | 98cdad31de8a9c18e48c6f2f13857adf192a6e6f (diff) | |
download | seabios-674f140b300a27550c02efef31b35a7add243c02.tar.gz |
usb: Rename findEndPointDesc() to usb_find_desc()
This is just function renaming - no code implementation changes.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/usb.h')
-rw-r--r-- | src/hw/usb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hw/usb.h b/src/hw/usb.h index 0d07032c..cadf5431 100644 --- a/src/hw/usb.h +++ b/src/hw/usb.h @@ -242,8 +242,8 @@ void usb_desc2pipe(struct usb_pipe *pipe, struct usbdevice_s *usbdev int usb_get_period(struct usbdevice_s *usbdev , struct usb_endpoint_descriptor *epdesc); int usb_xfer_time(struct usb_pipe *pipe, int datalen); -struct usb_endpoint_descriptor *findEndPointDesc(struct usbdevice_s *usbdev - , int type, int dir); +struct usb_endpoint_descriptor *usb_find_desc(struct usbdevice_s *usbdev + , int type, int dir); void usb_enumerate(struct usbhub_s *hub); void usb_setup(void); |