include: Modify exynos_format.h for define ALIGN UP/DOWN
authorHyeonmyeong Choi <hyeon.choi@samsung.com>
Sat, 2 Feb 2013 09:41:33 +0000 (18:41 +0900)
committerHwang Tonghun <thun.hwang@samsung.com>
Sun, 24 Feb 2013 06:48:05 +0000 (15:48 +0900)
Change-Id: I0c7e85dc6f2f3b3f859d54bd109b57d46f90e684
Signed-off-by: Hyeonmyeong Choi <hyeon.choi@samsung.com>
include/exynos_format.h [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index f4c0466..fff96ce
@@ -58,7 +58,9 @@ struct ADDRS {
 /* 12  Y/CbCr 4:2:0 64x32 macroblocks */
 #define V4L2_PIX_FMT_NV12T    v4l2_fourcc('T', 'V', '1', '2')
 
-#define ALIGN(x, a)       (((x) + (a) - 1) & ~((a) - 1))
+#define ALIGN_UP(x, a)    (((x) + (a) - 1) & ~((a) - 1))
+#define ALIGN_DOWN(x, a)  ((x) - (x % a))
+#define ALIGN(x, a)       ALIGN_UP(x, a)
 #define ALIGN_TO_32B(x)   ((((x) + (1 <<  5) - 1) >>  5) <<  5)
 #define ALIGN_TO_128B(x)  ((((x) + (1 <<  7) - 1) >>  7) <<  7)
 #define ALIGN_TO_8KB(x)   ((((x) + (1 << 13) - 1) >> 13) << 13)