diff options
author | Huacai Chen <chenhuacai@gmail.com> | 2012-08-11 05:32:17 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-08-23 19:41:05 -0400 |
commit | 04cf55e1fa5ff0c83756b803a47cb6bd0b39f38b (patch) | |
tree | ef230ad799d97828d4dfe985878f15b4d5718c1d /drivers/gpu/drm/ttm | |
parent | 451023dc32d4542c21b52ad1692e6e01cb75b099 (diff) |
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')
-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) | |||
472 | else | 472 | else |
473 | tmp = pgprot_noncached(tmp); | 473 | tmp = pgprot_noncached(tmp); |
474 | #endif | 474 | #endif |
475 | #if defined(__sparc__) | 475 | #if defined(__sparc__) || defined(__mips__) |
476 | if (!(caching_flags & TTM_PL_FLAG_CACHED)) | 476 | if (!(caching_flags & TTM_PL_FLAG_CACHED)) |
477 | tmp = pgprot_noncached(tmp); | 477 | tmp = pgprot_noncached(tmp); |
478 | #endif | 478 | #endif |