Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] media/rc/imon.c: use USB API functions rather than constants

This patch introduces the use of the function usb_endpoint_type.

The Coccinelle semantic patch that makes these changes is as follows:

@@ struct usb_endpoint_descriptor *epd; @@

- (epd->bmAttributes & \(USB_ENDPOINT_XFERTYPE_MASK\|3\))
+ usb_endpoint_type(epd)

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

authored by

Himangi Saraogi and committed by
Mauro Carvalho Chehab
9408d8f0 612f676b

+1 -1
+1 -1
drivers/media/rc/imon.c
··· 2123 2123 for (i = 0; i < num_endpts && !(ir_ep_found && display_ep_found); ++i) { 2124 2124 ep = &iface_desc->endpoint[i].desc; 2125 2125 ep_dir = ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK; 2126 - ep_type = ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK; 2126 + ep_type = usb_endpoint_type(ep); 2127 2127 2128 2128 if (!ir_ep_found && ep_dir == USB_DIR_IN && 2129 2129 ep_type == USB_ENDPOINT_XFER_INT) {