Staging: rtl8192u: Convert use of __constant_<foo> to <foo>
authorVaishali Thakkar <vthakkar1994@gmail.com>
Fri, 6 Mar 2015 13:22:28 +0000 (18:52 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Mar 2015 14:50:16 +0000 (15:50 +0100)
commit6465144c3d19ca1c2f5fb1dd12d0a6496254c85c
tree78739b45141ce08aba65ac1e8d5a747e546206a2
parent58662d9f1ea9de4ef98348f556d676eeaaf6be49
Staging: rtl8192u: Convert use of __constant_<foo> to <foo>

Using functions of the form __constant_<foo> isn't preferred
outside of include/uapi/ as using the function without
__constant_ is identical when the argument is a constant.
So, this patch replaces __constant_htons with htons.

This is done using Coccinelle and semantic patch used for
this is as follows:

@@identifier x;@@

(
- __constant_htons(x)
+ htons(x)
|
- __constant_htonl(x)
+ htonl(x)
|
- __constant_ntohs(x)
+ htons(x)
|
- __constant_ntohl(x)
+ htonl(x)
)

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c