From: Patrick Ziegler <patrick.ziegler@fh-kl.de>
To: "Luis R. Rodriguez" <mcgrof@kernel.org>
Cc: <backports@vger.kernel.org>
Subject: [PATCH v3 05/10] backports: add usb_endpoint_maxp()
Date: Thu, 15 Aug 2013 14:40:26 +0200 [thread overview]
Message-ID: <520CCC3A.1050309@fh-kl.de> (raw)
In-Reply-To: <cover.1376569949.git.patrick.ziegler@fh-kl.de>
This function is missing for kernel version < 3.2 but required by uvc_video
and cdc-wdm device drivers.
Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de>
---
backport/backport-include/linux/usb/ch9.h | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100644 backport/backport-include/linux/usb/ch9.h
diff --git a/backport/backport-include/linux/usb/ch9.h b/backport/backport-include/linux/usb/ch9.h
new file mode 100644
index 0000000..252a6f1
--- /dev/null
+++ b/backport/backport-include/linux/usb/ch9.h
@@ -0,0 +1,23 @@
+#ifndef __BACKPORT__LINUX_USB_CH9_H
+#define __BACKPORT__LINUX_USB_CH9_H
+
+#include_next <linux/usb/ch9.h>
+#include <linux/version.h>
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,2,0)
+#include <linux/types.h> /* __u8 etc */
+#include <asm/byteorder.h> /* le16_to_cpu */
+
+/**
+ * usb_endpoint_maxp - get endpoint's max packet size
+ * @epd: endpoint to be checked
+ *
+ * Returns @epd's max packet
+ */
+static inline int usb_endpoint_maxp(const struct usb_endpoint_descriptor *epd)
+{
+ return __le16_to_cpu(epd->wMaxPacketSize);
+}
+#endif /* < 3.2 */
+
+#endif /* __BACKPORT__LINUX_USB_CH9_H */
--
1.8.1.2
--
Dipl.-Inf. (FH) Patrick Ziegler
University Of Applied Sciences
Kaiserslautern
Amerikastrasse 1
D-66482 Zweibruecken
Germany
Phone: +49 631 3724 5526
Mail: patrick.ziegler@fh-kl.de
PGP KeyID 0xB4796B8C
http://www.fh-kl.de
http://www.fh-kl.de/fachbereiche/imst/iuk-knowhow.html
next prev parent reply other threads:[~2013-08-15 12:40 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1376569949.git.patrick.ziegler@fh-kl.de>
2013-08-15 12:40 ` [PATCH v3 01/10] backports: fix build errors for old kernel versions without PCI support Patrick Ziegler
2013-08-15 12:40 ` [PATCH v3 02/10] backports: add eth_prepare_mac_addr_change() and eth_commit_mac_addr_change() Patrick Ziegler
2013-08-16 9:54 ` Johannes Berg
2013-08-15 12:40 ` [PATCH v3 03/10] backports: define PM_EVENT_AUTO Patrick Ziegler
2013-08-15 12:40 ` [PATCH v3 04/10] backports: add usb_translate_errors() Patrick Ziegler
2013-08-15 12:40 ` Patrick Ziegler [this message]
2013-08-15 12:40 ` [PATCH v3 06/10] backports: update enum usb_device_speed with USB_SPEED_SUPER Patrick Ziegler
2013-08-15 12:40 ` [PATCH v3 07/10] backports: include headers directly if math64 header is missing Patrick Ziegler
2013-08-15 12:40 ` [PATCH v3 08/10] backports: define phys_addr_t for ARM on kernel version < 2.6.25 Patrick Ziegler
2013-08-15 12:40 ` [PATCH v3 09/10] backports: add wwan device drivers Patrick Ziegler
2013-08-15 12:41 ` [PATCH v3 10/10] backports: add defconfig for " Patrick Ziegler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=520CCC3A.1050309@fh-kl.de \
--to=patrick.ziegler@fh-kl.de \
--cc=backports@vger.kernel.org \
--cc=mcgrof@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).