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 <arybchenko@solarflare.com>
This commit is contained in:
Andrew Rybchenko 2019-01-13 14:50:13 +00:00 committed by Ferruh Yigit
parent 2c0dd7b69f
commit c69f5e0cb1

View File

@ -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