aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Täht <d@teklibre.com>2009-01-20 09:33:22 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 17:53:32 -0400
commit7f84642b2f6524929738a4c005002637ecd4b16d (patch)
tree00b5604577425d9c2a4cd2da0c56309999b0d37e
parentf6a0ccadd1ab24818897fcbe039a248fee3cbd34 (diff)
Staging: frontier: removed now unused frontier_compat.h file
Signed-off-by: David Täht <d@teklibre.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> index 00450e6..0000000
-rw-r--r--drivers/staging/frontier/frontier_compat.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/drivers/staging/frontier/frontier_compat.h b/drivers/staging/frontier/frontier_compat.h
deleted file mode 100644
index 00450e637ac8..000000000000
--- a/drivers/staging/frontier/frontier_compat.h
+++ /dev/null
@@ -1,63 +0,0 @@
1/* USB defines for older kernels */
2
3#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19)
4
5/**
6 * usb_endpoint_dir_out - check if the endpoint has OUT direction
7 * @epd: endpoint to be checked
8 *
9 * Returns true if the endpoint is of type OUT, otherwise it returns false.
10 */
11
12static inline int usb_endpoint_dir_out(const struct usb_endpoint_descriptor *epd)
13{
14 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT);
15}
16
17static inline int usb_endpoint_dir_in(const struct usb_endpoint_descriptor *epd)
18{
19 return ((epd->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN);
20}
21
22
23/**
24 * usb_endpoint_xfer_int - check if the endpoint has interrupt transfer type
25 * @epd: endpoint to be checked
26 *
27 * Returns true if the endpoint is of type interrupt, otherwise it returns
28 * false.
29 */
30static inline int usb_endpoint_xfer_int(const struct usb_endpoint_descriptor *epd)
31{
32 return ((epd->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
33 USB_ENDPOINT_XFER_INT);
34}
35
36
37/**
38 * usb_endpoint_is_int_in - check if the endpoint is interrupt IN
39 * @epd: endpoint to be checked
40 *
41 * Returns true if the endpoint has interrupt transfer type and IN direction,
42 * otherwise it returns false.
43 */
44
45static inline int usb_endpoint_is_int_in(const struct usb_endpoint_descriptor *epd)
46{
47 return (usb_endpoint_xfer_int(epd) && usb_endpoint_dir_in(epd));
48}
49
50/**
51 * usb_endpoint_is_int_out - check if the endpoint is interrupt OUT
52 * @epd: endpoint to be checked
53 *
54 * Returns true if the endpoint has interrupt transfer type and OUT direction,
55 * otherwise it returns false.
56 */
57
58static inline int usb_endpoint_is_int_out(const struct usb_endpoint_descriptor *epd)
59{
60 return (usb_endpoint_xfer_int(epd) && usb_endpoint_dir_out(epd));
61}
62
63#endif /* older kernel versions */