projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c53b43
)
drm/nouveau: fix big-endian switch
author
Ben Skeggs
<bskeggs@redhat.com>
Tue, 14 Jun 2011 00:16:17 +0000
(10:16 +1000)
committer
Ben Skeggs
<bskeggs@redhat.com>
Sat, 18 Jun 2011 04:38:27 +0000
(14:38 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nouveau_state.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/nouveau/nouveau_state.c
b/drivers/gpu/drm/nouveau/nouveau_state.c
index 80218887e0a004fc19337f180a93fe4ecb4196d2..144f79a350ae3d69b542a7f364988d194a28cbcb 100644
(file)
--- a/
drivers/gpu/drm/nouveau/nouveau_state.c
+++ b/
drivers/gpu/drm/nouveau/nouveau_state.c
@@
-881,8
+881,8
@@
int nouveau_load(struct drm_device *dev, unsigned long flags)
#ifdef __BIG_ENDIAN
/* Put the card in BE mode if it's not */
- if (nv_rd32(dev, NV03_PMC_BOOT_1))
- nv_wr32(dev, NV03_PMC_BOOT_1, 0x0
0
000001);
+ if (nv_rd32(dev, NV03_PMC_BOOT_1)
!= 0x01000001
)
+ nv_wr32(dev, NV03_PMC_BOOT_1, 0x0
1
000001);
DRM_MEMORYBARRIER();
#endif