diff mbox

[igt,03/10] lib/igt_fb: fix open-coded ALIGN()

Message ID 1447434771-19337-4-git-send-email-paulo.r.zanoni@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Zanoni, Paulo R Nov. 13, 2015, 5:12 p.m. UTC
Maybe this will help someone's life in the future.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
---
 lib/igt_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 088bc0d..2818c9f 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -104,7 +104,7 @@  static int create_bo_for_fb(int fd, int width, int height, int bpp,
 			;
 	} else {
 		/* Scan-out has a 64 byte alignment restriction */
-		stride = (width * (bpp / 8) + 63) & ~63;
+		stride = ALIGN(width * (bpp / 8), 64);
 		size = stride * height;
 	}