summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common.h b/common.h
index ee537a8..14fdfe9 100644
--- a/common.h
+++ b/common.h
@@ -83,6 +83,11 @@ static inline int log_2(int val)
return ret;
}
+static inline bool is_power_of_2(unsigned val)
+{
+ return __builtin_popcount(val) == 1;
+}
+
char *get_dev_mtd(void);
#endif /* COMMON_H */
OpenPOWER on IntegriCloud