From: Andrew Rybchenko Date: Sun, 13 Jan 2019 14:50:13 +0000 (+0000) Subject: net/sfc: fix typo in preprocessor check X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c69f5e0cb1944e7699e64f8f476571a4e9b6acb9;p=dpdk.git net/sfc: fix typo in preprocessor check ISP2() macro function misspelled in a check just before it. Fixes: e1b944598579 ("net/sfc: build libefx") Cc: stable@dpdk.org Signed-off-by: Andrew Rybchenko --- diff --git a/drivers/net/sfc/efsys.h b/drivers/net/sfc/efsys.h index 0b4795da19..f7bcc74d9a 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