mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-29 09:44:06 +00:00
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>
This commit is contained in:
parent
d642d3acd8
commit
743c16719f
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ static int omap_fbdev_create(struct drm_fb_helper *helper,
|
||||||
fbdev->ywrap_enabled = priv->has_dmm && ywrap_enabled;
|
fbdev->ywrap_enabled = priv->has_dmm && ywrap_enabled;
|
||||||
if (fbdev->ywrap_enabled) {
|
if (fbdev->ywrap_enabled) {
|
||||||
/* need to align pitch to page size if using DMM scrolling */
|
/* 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 */
|
/* allocate backing bo */
|
||||||
|
|
Loading…
Add table
Reference in a new issue