diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-15 02:24:26 +0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2014-06-22 16:32:10 +0400 |
commit | cf3198c2051a180d0cb469b275b2fb30a0533772 (patch) | |
tree | 653b704312e227b95eb32de3191922b6ac0b11c6 /drivers/gpu/drm/msm/msm_iommu.c | |
parent | b77f47e78982807286f6fdb4c39f9e798606dace (diff) | |
download | linux-cf3198c2051a180d0cb469b275b2fb30a0533772.tar.xz |
drm/msm: use PAGE_ALIGNED instead of IS_ALIGNED(PAGE_SIZE)
use mm.h definition
Cc: David Airlie <airlied@linux.ie>
Cc: Rob Clark <robdclark@gmail.com>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_iommu.c')
-rw-r--r-- | drivers/gpu/drm/msm/msm_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/msm_iommu.c b/drivers/gpu/drm/msm/msm_iommu.c index 92b745986231..198ed848fec7 100644 --- a/drivers/gpu/drm/msm/msm_iommu.c +++ b/drivers/gpu/drm/msm/msm_iommu.c @@ -110,7 +110,7 @@ static int msm_iommu_unmap(struct msm_mmu *mmu, uint32_t iova, VERB("unmap[%d]: %08x(%x)", i, iova, bytes); - BUG_ON(!IS_ALIGNED(bytes, PAGE_SIZE)); + BUG_ON(!PAGE_ALIGNED(bytes)); da += bytes; } |