diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/common/io/ixgbe/ixgbe_osdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/io/ixgbe/ixgbe_osdep.h b/usr/src/uts/common/io/ixgbe/ixgbe_osdep.h index a8df3df932..ce0cc20879 100644 --- a/usr/src/uts/common/io/ixgbe/ixgbe_osdep.h +++ b/usr/src/uts/common/io/ixgbe/ixgbe_osdep.h @@ -113,7 +113,7 @@ boolean_t ixgbe_removed(struct ixgbe_hw *); #ifdef _BIG_ENDIAN #define IXGBE_CPU_TO_LE16 BSWAP_16 #define IXGBE_CPU_TO_LE32 BSWAP_32 -#define IXGBE_LE32_TO_CPUS BSWAP_32 +#define IXGBE_LE32_TO_CPUS(x) *(x) = BSWAP_32(*(x)) #define IXGBE_CPU_TO_BE16(x) (x) #define IXGBE_CPU_TO_BE32(x) (x) #define IXGBE_BE32_TO_CPU(x) (x) |