
25 Nov
2017
25 Nov
'17
6:08 a.m.
bitfield_shift() uses the ffs() function, which is provided by bitops.h.
Explicitly include this header.
Signed-off-by: Chen-Yu Tsai wens@csie.org --- include/bitfield.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/bitfield.h b/include/bitfield.h index a59f3c279aad..adfae49de580 100644 --- a/include/bitfield.h +++ b/include/bitfield.h @@ -37,6 +37,7 @@ * tables which describe all bitfields in all registers. */
+#include <linux/bitops.h> #include <linux/types.h>
/* Produces a mask of set bits covering a range of a uint value */
--
2.15.0