diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2009-02-01 03:45:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-01 03:45:17 -0500 |
commit | 09640e6365c679b5642b1c41b6d7078f51689ddf (patch) | |
tree | a2b80c153bd23fe59db8c6994fda29923819fcea /drivers/net/sfc | |
parent | ee437770c42088b9b653e8b3bf28a61fa647f84e (diff) |
net: replace uses of __constant_{endian}
Base versions handle constant folding now.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc')
-rw-r--r-- | drivers/net/sfc/bitfield.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sfc/bitfield.h b/drivers/net/sfc/bitfield.h index d95c21828014..d54d84c267b9 100644 --- a/drivers/net/sfc/bitfield.h +++ b/drivers/net/sfc/bitfield.h | |||
@@ -543,7 +543,7 @@ typedef union efx_oword { | |||
543 | 543 | ||
544 | /* Static initialiser */ | 544 | /* Static initialiser */ |
545 | #define EFX_OWORD32(a, b, c, d) \ | 545 | #define EFX_OWORD32(a, b, c, d) \ |
546 | { .u32 = { __constant_cpu_to_le32(a), __constant_cpu_to_le32(b), \ | 546 | { .u32 = { cpu_to_le32(a), cpu_to_le32(b), \ |
547 | __constant_cpu_to_le32(c), __constant_cpu_to_le32(d) } } | 547 | cpu_to_le32(c), cpu_to_le32(d) } } |
548 | 548 | ||
549 | #endif /* EFX_BITFIELD_H */ | 549 | #endif /* EFX_BITFIELD_H */ |