1
0
Files
linux/drivers
Julia Lawall 33e2fb2f2b drivers/net/wireless: Use usb_endpoint_dir_out
Use the usb_endpoint_dir_out API function.  Note that the use of
USB_TYPE_MASK in the original code is incorrect; it results in a test that
is always false.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
struct usb_endpoint_descriptor *endpoint;
expression E;
@@

- (endpoint->bEndpointAddress & E) == USB_DIR_OUT
+ usb_endpoint_dir_out(endpoint)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2009-09-23 11:35:54 -04:00
..
2009-09-11 02:33:59 -04:00
2009-08-15 12:58:45 +09:00
2009-09-01 01:13:16 -07:00
2009-09-03 14:59:16 +01:00
2009-08-26 20:06:52 -07:00
2009-08-18 16:31:13 -07:00
2009-09-23 11:35:41 -04:00
2009-09-01 01:13:44 -07:00