diff options
Diffstat (limited to 'drivers/net/sfc/bitfield.h')
| -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 d95c2182801..d54d84c267b 100644 --- a/drivers/net/sfc/bitfield.h +++ b/drivers/net/sfc/bitfield.h @@ -543,7 +543,7 @@ typedef union efx_oword {  /* Static initialiser */  #define EFX_OWORD32(a, b, c, d)						\ -	{ .u32 = { __constant_cpu_to_le32(a), __constant_cpu_to_le32(b), \ -		   __constant_cpu_to_le32(c), __constant_cpu_to_le32(d) } } +	{ .u32 = { cpu_to_le32(a), cpu_to_le32(b), \ +		   cpu_to_le32(c), cpu_to_le32(d) } }  #endif /* EFX_BITFIELD_H */  |