]> Git Repo - linux.git/commitdiff
drm/omap: replace ALIGN(PAGE_SIZE) by PAGE_ALIGN
authorFabian Frederick <[email protected]>
Tue, 1 Jul 2014 18:52:50 +0000 (20:52 +0200)
committerTomi Valkeinen <[email protected]>
Thu, 2 Jul 2015 12:58:07 +0000 (15:58 +0300)
use mm.h definition

Cc: David Airlie <[email protected]>
Cc: Tomi Valkeinen <[email protected]>
Cc: [email protected]
Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: Tomi Valkeinen <[email protected]>
drivers/gpu/drm/omapdrm/omap_fbdev.c

index 23b5a84389e3b23b0245af9146128862c571b639..720d16bce7e82b790a7aff17f5bbec94b6df18fe 100644 (file)
@@ -135,7 +135,7 @@ static int omap_fbdev_create(struct drm_fb_helper *helper,
        fbdev->ywrap_enabled = priv->has_dmm && ywrap_enabled;
        if (fbdev->ywrap_enabled) {
                /* need to align pitch to page size if using DMM scrolling */
-               mode_cmd.pitches[0] = ALIGN(mode_cmd.pitches[0], PAGE_SIZE);
+               mode_cmd.pitches[0] = PAGE_ALIGN(mode_cmd.pitches[0]);
        }
 
        /* allocate backing bo */
This page took 0.082613 seconds and 4 git commands to generate.