]> git.sur5r.net Git - u-boot/commitdiff
linux/kernel.h: Add ALIGN_DOWN macro
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 21 Dec 2017 04:51:46 +0000 (13:51 +0900)
committerTom Rini <trini@konsulko.com>
Wed, 10 Jan 2018 13:05:51 +0000 (08:05 -0500)
Follow Linux commit ed067d4a859f ("linux/kernel.h: Add ALIGN_DOWN
macro").

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
include/linux/kernel.h

index 87d2d9554dbb7947aeb9aa61cf9cb437765bdcdd..04a09eb4f6489496417a49db41e5586172753019 100644 (file)
@@ -38,6 +38,7 @@
 #define REPEAT_BYTE(x) ((~0ul / 0xff) * (x))
 
 #define ALIGN(x,a)             __ALIGN_MASK((x),(typeof(x))(a)-1)
+#define ALIGN_DOWN(x, a)       ALIGN((x) - ((a) - 1), (a))
 #define __ALIGN_MASK(x,mask)   (((x)+(mask))&~(mask))
 #define PTR_ALIGN(p, a)                ((typeof(p))ALIGN((unsigned long)(p), (a)))
 #define IS_ALIGNED(x, a)               (((x) & ((typeof(x))(a) - 1)) == 0)