From e02305fc28e433515a36ffb81864c1da817b12b1 Mon Sep 17 00:00:00 2001 From: Andrew Rybchenko Date: Wed, 13 Jan 2016 07:55:47 +0000 Subject: [PATCH] sfxge: cleanup: fix typo in unused EFX_QWORD_IS_SET64 Submitted by: Richard Houldsworth Sponsored by: Solarflare Communications, Inc. MFC after: 2 days --- sys/dev/sfxge/common/efx_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sfxge/common/efx_types.h b/sys/dev/sfxge/common/efx_types.h index f112a4c17a26..ae4c6d97ae9e 100644 --- a/sys/dev/sfxge/common/efx_types.h +++ b/sys/dev/sfxge/common/efx_types.h @@ -536,7 +536,7 @@ extern int fix_lint; (_oword).eo_u32[3]) == ~((uint32_t)0)) #define EFX_QWORD_IS_SET64(_qword) \ - (((_qword).eq_u64[0]) == ~((uint32_t)0)) + (((_qword).eq_u64[0]) == ~((uint64_t)0)) #define EFX_QWORD_IS_SET32(_qword) \ (((_qword).eq_u32[0] & \