diff options
author | Michal Suchanek <msuchanek@suse.de> | 2019-08-18 10:55:25 +0200 |
---|---|---|
committer | marex <marex@chi.lan> | 2019-09-11 10:11:29 +0200 |
commit | fdd135bf8ea475b61f3e771cf67e840544c415ee (patch) | |
tree | 9734296168efc807a8e600aa6dbeb41987e4ca25 /include/usb.h | |
parent | 3e816a2424c428f452f2003aff105511dc0cd9d4 (diff) |
usb: usb_submit_int_msg -> usb_int_msg
This aligns naming with usb_bulk_msg and usb_control_msg.
Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Diffstat (limited to 'include/usb.h')
-rw-r--r-- | include/usb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/usb.h b/include/usb.h index 420a30e49f..0d38d8333a 100644 --- a/include/usb.h +++ b/include/usb.h @@ -261,8 +261,8 @@ int usb_control_msg(struct usb_device *dev, unsigned int pipe, void *data, unsigned short size, int timeout); int usb_bulk_msg(struct usb_device *dev, unsigned int pipe, void *data, int len, int *actual_length, int timeout); -int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe, - void *buffer, int transfer_len, int interval); +int usb_int_msg(struct usb_device *dev, unsigned long pipe, + void *buffer, int transfer_len, int interval); int usb_disable_asynch(int disable); int usb_maxpacket(struct usb_device *dev, unsigned long pipe); int usb_get_configuration_no(struct usb_device *dev, int cfgno, |