Julia Lawall
2230c3c803
V4L/DVB (10185): Use negated usb_endpoint_xfer_control, etc
...
This patch extends 134179823b3ca9c8b98e0631906459dbb022ff9b by using
usb_endpoint_xfer_control, usb_endpoint_xfer_isoc, usb_endpoint_xfer_bulk,
and usb_endpoint_xfer_int in the negated case as well.
The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/ )
// <smpl>
@@ struct usb_endpoint_descriptor *epd; @@
- (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_CONTROL\|0\))
+ !usb_endpoint_xfer_control(epd)
@@ struct usb_endpoint_descriptor *epd; @@
- (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_ISOC\|1\))
+ !usb_endpoint_xfer_isoc(epd)
@@ struct usb_endpoint_descriptor *epd; @@
- (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_BULK\|2\))
+ !usb_endpoint_xfer_bulk(epd)
@@ struct usb_endpoint_descriptor *epd; @@
- (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_INT\|3\))
+ !usb_endpoint_xfer_int(epd)
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2009-01-07 22:18:56 -02:00
..
2009-01-07 15:41:01 -08:00
2009-01-07 08:47:11 -08:00
2008-12-26 01:26:11 -08:00
2009-01-07 15:34:47 -08:00
2009-01-07 09:59:52 -08:00
2008-12-29 08:28:43 +01:00
2009-01-07 11:31:52 -08:00
2009-01-02 11:44:09 -08:00
2009-01-06 11:28:07 +01:00
2009-01-06 15:59:30 -08:00
2009-01-04 23:50:38 +01:00
2009-01-06 17:02:07 -08:00
2009-01-06 17:02:07 -08:00
2009-01-07 11:54:57 +10:00
2009-01-07 15:37:24 -08:00
2009-01-07 11:59:51 -08:00
2009-01-07 15:37:24 -08:00
2009-01-06 17:21:02 +01:00
2009-01-06 10:44:39 -08:00
2009-01-04 23:50:36 +01:00
2009-01-07 11:31:52 -08:00
2009-01-07 11:59:27 -08:00
2009-01-06 10:44:39 -08:00
2009-01-06 10:44:34 -08:00
2009-01-07 11:31:52 -08:00
2009-01-06 03:05:19 +00:00
2009-01-07 22:18:56 -02:00
2009-01-06 10:44:38 -08:00
2009-01-07 11:31:52 -08:00
2009-01-04 15:31:49 +01:00
2009-01-07 11:31:52 -08:00
2009-01-07 11:05:42 +01:00
2009-01-07 11:31:52 -08:00
2009-01-07 15:41:01 -08:00
2009-01-05 11:54:28 -05:00
2009-01-07 11:12:55 -08:00
2009-01-06 15:59:31 -08:00
2009-01-07 11:19:43 -08:00
2009-01-06 10:44:38 -08:00
2009-01-06 10:44:38 -08:00
2009-01-06 15:59:28 -08:00
2009-01-04 12:17:42 +01:00
2009-01-07 11:31:52 -08:00
2009-01-07 11:31:52 -08:00
2009-01-07 15:35:47 -08:00
2009-01-07 11:31:52 -08:00
2009-01-07 16:37:34 +01:00
2009-01-07 22:18:54 -02:00
2009-01-06 10:44:37 -08:00
2009-01-06 10:44:44 -08:00
2009-01-07 10:00:13 -08:00
2009-01-06 11:28:09 +01:00
2009-01-07 11:31:52 -08:00
2009-01-06 10:44:34 -08:00
2009-01-06 10:44:34 -08:00
2008-12-31 16:12:54 +00:00
2009-01-06 10:44:34 -08:00
2009-01-07 10:00:02 -08:00