K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T18:50:45.289725Z K 7 svn:log V 690 Fix unused variable warning in sfxge's ef10_tx.c With clang 15, the following -Werror warning is produced: sys/dev/sfxge/common/ef10_tx.c:345:15: error: variable 'eqp' set but not used [-Werror,-Wunused-but-set-variable] efx_qword_t *eqp; ^ The 'eqp' variable is passed as an argument to the EFSYS_BAR_WC_WRITEQ() macro, but currently this macro ignores the argument, similar to its other _esbp argument. Silence the warning by casting the _eqp argument to void in the macro. MFC after: 3 days (cherry picked from commit a79731b9453320af6fcf5ec16fa5de900dadbce8) Git Hash: c3b55b44b0b74e3694269445e2e879ede04027fb Git Author: dim@FreeBSD.org END