diff options
author | Eric Anholt <eric@anholt.net> | 2010-03-04 10:29:09 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-03-04 11:25:14 -0800 |
commit | 7b7c724da97f358f5d2d4d4dae75cfc85bde2c62 (patch) | |
tree | af90bcd7a5fa8a26a82ca095536b0a114935841d /src/i830_driver.c | |
parent | 15026d64d3c0d8ad96e0a73fcae3103d1c41fd46 (diff) |
Remove remaining fbOffset setting.
In the long long ago, fbOffset was used for DGA. The server now has
only one reference to fbOffset, a leftover setting of it in fbdevhw.
We can safely ignore it now, which is good since we weren't updating
it in other places where the front buffer offset could change.
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 284ad711..53d86636 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -1389,8 +1389,7 @@ static Bool I830EnterVT(int scrnIndex, int flags) strerror(errno)); } - if (!i830_reinit_memory(scrn)) - return FALSE; + i830_set_gem_max_sizes(scrn); if (!xf86SetDesiredModes(scrn)) return FALSE; |