diff options
author | 2009-09-22 13:45:16 +0200 | |
---|---|---|
committer | 2009-09-23 11:35:54 -0400 | |
commit | 33e2fb2f2b5d3b2f491fccab0ead256e34447cc6 (patch) | |
tree | 777c9f132d2ec9a1fc7e46c78ac1d97e4901fdf1 /kernel/hrtimer.c | |
parent | cfg80211: don't overwrite privacy setting (diff) | |
download | linux-dev-33e2fb2f2b5d3b2f491fccab0ead256e34447cc6.tar.xz linux-dev-33e2fb2f2b5d3b2f491fccab0ead256e34447cc6.zip |
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 'kernel/hrtimer.c')
0 files changed, 0 insertions, 0 deletions