net/ice/base: add basic Tx scheduler
[dpdk.git] / drivers / net / cxgbe / cxgbe_compat.h
index 6091564..5d47c5f 100644 (file)
@@ -198,15 +198,6 @@ static inline int cxgbe_fls(int x)
        return x ? sizeof(x) * 8 - __builtin_clz(x) : 0;
 }
 
-/**
- * cxgbe_ffs - find first bit set
- * @x: the word to search
- */
-static inline int cxgbe_ffs(int x)
-{
-       return x ? __builtin_ffs(x) : 0;
-}
-
 static inline unsigned long ilog2(unsigned long n)
 {
        unsigned int e = 0;