diff options
author | Huacai Chen <chenhuacai@gmail.com> | 2012-08-11 13:32:17 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-08-24 03:41:05 +0400 |
commit | 04cf55e1fa5ff0c83756b803a47cb6bd0b39f38b (patch) | |
tree | ef230ad799d97828d4dfe985878f15b4d5718c1d /drivers/gpu/drm/ttm/ttm_bo_util.c | |
parent | 451023dc32d4542c21b52ad1692e6e01cb75b099 (diff) | |
download | linux-04cf55e1fa5ff0c83756b803a47cb6bd0b39f38b.tar.xz |
drm: Handle io prot correctly for MIPS.
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Signed-off-by: Hongliang Tao <taohl@lemote.com>
Signed-off-by: Hua Yan <yanh@lemote.com>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_bo_util.c')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c index f8187ead7b37..0df71eacd587 100644 --- a/drivers/gpu/drm/ttm/ttm_bo_util.c +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c @@ -472,7 +472,7 @@ pgprot_t ttm_io_prot(uint32_t caching_flags, pgprot_t tmp) else tmp = pgprot_noncached(tmp); #endif -#if defined(__sparc__) +#if defined(__sparc__) || defined(__mips__) if (!(caching_flags & TTM_PL_FLAG_CACHED)) tmp = pgprot_noncached(tmp); #endif |