projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efa8450
)
drm/radeon/kms: fix screen clearing before fbcon.
author
Dave Airlie
<airlied@redhat.com>
Tue, 9 Feb 2010 02:31:08 +0000
(12:31 +1000)
committer
Dave Airlie
<airlied@redhat.com>
Thu, 11 Feb 2010 01:25:27 +0000
(11:25 +1000)
This memset_io was added to debug something way back and got
left behind, memset the fb to black so the borders don't be all white.
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_fb.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_fb.c
b/drivers/gpu/drm/radeon/radeon_fb.c
index 66055b3d86684031ab16eb9e872360fb68fcaaa2..23aa393634f2af5661307e43dc6dbdf4271be3b2 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_fb.c
+++ b/
drivers/gpu/drm/radeon/radeon_fb.c
@@
-248,7
+248,7
@@
int radeonfb_create(struct drm_device *dev,
if (ret)
goto out_unref;
- memset_io(fbptr, 0x
ff
, aligned_size);
+ memset_io(fbptr, 0x
0
, aligned_size);
strcpy(info->fix.id, "radeondrmfb");