[U-Boot] [PATCH v2 1/5] bitfield: Include linux/bitops.h for ffs()

Chen-Yu Tsai wens at csie.org
Sat Nov 25 05:08:28 UTC 2017


bitfield_shift() uses the ffs() function, which is provided by bitops.h.

Explicitly include this header.

Signed-off-by: Chen-Yu Tsai <wens at 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



More information about the U-Boot mailing list