]> git.baikalelectronics.ru Git - kernel.git/commit
[media] Staging: media: lirc: use USB API functions rather than constants
authorShraddha Barke <shraddha.6596@gmail.com>
Thu, 6 Aug 2015 09:54:22 +0000 (06:54 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 11 Aug 2015 21:00:30 +0000 (18:00 -0300)
commit5cd96fae42fff8b79835b73a9c7eb65d72a65700
tree3adbd4ef48ef883923d98f27e4a77a6c5cfde918
parente0bbeed5136e4ffcfc9f823141a3d7ab86e289e2
[media] Staging: media: lirc: 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: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/staging/media/lirc/lirc_imon.c