commit | 2696f495bdc046d84da6c909a1e7f535138a2a62 | [log] [tgz] |
---|---|---|
author | Shraddha Barke <shraddha.6596@gmail.com> | Thu Aug 06 06:54:22 2015 -0300 |
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | Tue Aug 11 18:00:30 2015 -0300 |
tree | 3adbd4ef48ef883923d98f27e4a77a6c5cfde918 | |
parent | 7229f8c143dd932719530fb2fe4883f011917554 [diff] |
[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>