diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-07-01 20:52:50 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-07-02 14:58:07 +0200 |
commit | 743c16719f671c206923d23dae4ac57edfd9483c (patch) | |
tree | 1bb78df30e3ca6a6d84208910e6370773bdeae28 /drivers/gpu/drm/omapdrm | |
parent | drm/omap: fix align_pitch() for 24 bits per pixel (diff) | |
download | linux-743c16719f671c206923d23dae4ac57edfd9483c.tar.xz linux-743c16719f671c206923d23dae4ac57edfd9483c.zip |
drm/omap: replace ALIGN(PAGE_SIZE) by PAGE_ALIGN
use mm.h definition
Cc: David Airlie <airlied@linux.ie>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/gpu/drm/omapdrm')
-rw-r--r-- | drivers/gpu/drm/omapdrm/omap_fbdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_fbdev.c b/drivers/gpu/drm/omapdrm/omap_fbdev.c index 23b5a84389e3..720d16bce7e8 100644 --- a/drivers/gpu/drm/omapdrm/omap_fbdev.c +++ b/drivers/gpu/drm/omapdrm/omap_fbdev.c @@ -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 */ |