ISP2() macro function misspelled in a check just before it. Fixes: e1b944598579 ("net/sfc: build libefx") Cc: sta...@dpdk.org
Signed-off-by: Andrew Rybchenko <arybche...@solarflare.com> --- drivers/net/sfc/efsys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/sfc/efsys.h b/drivers/net/sfc/efsys.h index 0b4795da1..f7bcc74d9 100644 --- a/drivers/net/sfc/efsys.h +++ b/drivers/net/sfc/efsys.h @@ -84,7 +84,7 @@ typedef bool boolean_t; #define P2ALIGN(_x, _a) ((_x) & -(_a)) #endif -#ifndef IS2P +#ifndef ISP2 #define ISP2(x) rte_is_power_of_2(x) #endif -- 2.17.1