aboutsummaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:45:09 -0700
committerTom Rini <trini@konsulko.com>2020-01-17 17:53:52 -0500
commit6df75135b56afbc060e5979477e71e0b95e0dad5 (patch)
treedebf44f67eff3aa95a0b01c8557f2c5923918ce4 /include/linux
parent825faebbdfc9bcd3e6e6ac3d8f7b321deb43a94e (diff)
downloadu-boot-6df75135b56afbc060e5979477e71e0b95e0dad5.zip
u-boot-6df75135b56afbc060e5979477e71e0b95e0dad5.tar.gz
u-boot-6df75135b56afbc060e5979477e71e0b95e0dad5.tar.bz2
common: Move ROUND() into kernel.h
Move this macro in with all the other rounding macros. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/kernel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index fefbc07..b88c210 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -69,6 +69,8 @@
#define DIV_ROUND_UP_ULL(ll, d) DIV_ROUND_DOWN_ULL((ll) + (d) - 1, (d))
+#define ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1))
+
#if BITS_PER_LONG == 32
# define DIV_ROUND_UP_SECTOR_T(ll,d) DIV_ROUND_UP_ULL(ll, d)
#else