diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-02-15 07:58:35 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-15 07:58:35 +0100 |
commit | f3a7c66b5ce0b75a9774a50b5dcce93e5ba28370 (patch) | |
tree | 441f02ac10cb109cbb80fbd0d964af3638541f06 /include/rdma | |
parent | rndis: remove private wrapper of __constant_cpu_to_le32 (diff) | |
download | linux-f3a7c66b5ce0b75a9774a50b5dcce93e5ba28370.tar.xz linux-f3a7c66b5ce0b75a9774a50b5dcce93e5ba28370.zip |
net: replace __constant_{endian} uses in net headers
Base versions handle constant folding now. For headers exposed to
userspace, we must only expose the __ prefixed versions.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/rdma')
-rw-r--r-- | include/rdma/ib_verbs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 936e333e7ce5..c179318edd92 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -388,7 +388,7 @@ enum { IB_MULTICAST_QPN = 0xffffff }; -#define IB_LID_PERMISSIVE __constant_htons(0xFFFF) +#define IB_LID_PERMISSIVE cpu_to_be16(0xFFFF) enum ib_ah_flags { IB_AH_GRH = 1 |