diff options
author | Julia Lawall <julia@diku.dk> | 2009-09-22 11:45:16 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-23 15:35:54 (GMT) |
commit | 33e2fb2f2b5d3b2f491fccab0ead256e34447cc6 (patch) | |
tree | 777c9f132d2ec9a1fc7e46c78ac1d97e4901fdf1 /include/xen | |
parent | 94f85853324e02c3a32bc3101f090dc9a3f512b4 (diff) | |
download | linux-fsl-qoriq-33e2fb2f2b5d3b2f491fccab0ead256e34447cc6.tar.xz |
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>
Diffstat (limited to 'include/xen')
0 files changed, 0 insertions, 0 deletions