diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-10-16 12:05:09 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-10-16 14:46:32 -0400 |
commit | 98cdad31de8a9c18e48c6f2f13857adf192a6e6f (patch) | |
tree | 1ff4aa4cc3ced686d5bd4d434916026d4996e263 /src/hw/usb.h | |
parent | 20c9be39d3f04d5ff10e76f22e28cc220af1aac4 (diff) | |
download | seabios-98cdad31de8a9c18e48c6f2f13857adf192a6e6f.tar.gz |
usb: Rename usb_getFrameExp() to usb_get_period()
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 fe80ea63..0d07032c 100644 --- a/src/hw/usb.h +++ b/src/hw/usb.h @@ -239,8 +239,8 @@ void free_pipe(struct usb_pipe *pipe); struct usb_pipe *usb_getFreePipe(struct usb_s *cntl, u8 eptype); void usb_desc2pipe(struct usb_pipe *pipe, struct usbdevice_s *usbdev , struct usb_endpoint_descriptor *epdesc); -int usb_getFrameExp(struct usbdevice_s *usbdev - , struct usb_endpoint_descriptor *epdesc); +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); |