From 52409fae3e4b8d16b68b61902fc09075cd97b75d Mon Sep 17 00:00:00 2001 From: Dominik Sliwa Date: Sun, 2 Jul 2017 16:41:37 +0200 Subject: Backports generated from 4.11 kernel Initial commit. Signed-off-by: Dominik Sliwa --- backport-include/linux/usb/ch9.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 backport-include/linux/usb/ch9.h (limited to 'backport-include/linux/usb/ch9.h') diff --git a/backport-include/linux/usb/ch9.h b/backport-include/linux/usb/ch9.h new file mode 100644 index 0000000..c2f0120 --- /dev/null +++ b/backport-include/linux/usb/ch9.h @@ -0,0 +1,28 @@ +#ifndef __BACKPORT__LINUX_USB_CH9_H +#define __BACKPORT__LINUX_USB_CH9_H + +#include +#include_next + +#if LINUX_VERSION_IS_LESS(3,2,0) +#include /* __u8 etc */ +#include /* le16_to_cpu */ + +/** + * usb_endpoint_maxp - get endpoint's max packet size + * @epd: endpoint to be checked + * + * Returns @epd's max packet + */ +#define usb_endpoint_maxp LINUX_BACKPORT(usb_endpoint_maxp) +static inline int usb_endpoint_maxp(const struct usb_endpoint_descriptor *epd) +{ + return __le16_to_cpu(epd->wMaxPacketSize); +} +#endif /* < 3.2 */ + +#if LINUX_VERSION_IS_LESS(4,6,0) +#define USB_SPEED_SUPER_PLUS 6 +#endif + +#endif /* __BACKPORT__LINUX_USB_CH9_H */ -- cgit v1.2.3