diff options
author | Keith Packard <keithp@keithp.com> | 2001-07-24 19:06:04 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2001-07-24 19:06:04 +0000 |
commit | b7eb8a35b51aa2edc9ff59f091ee88ea7000b757 (patch) | |
tree | 0b6d32a25c7aa27d0fd4a8a30c9539e354aef245 /hw/kdrive/fbdev/fbdev.c | |
parent | d2d221a012950b98e48e47b6dea38e6ad385fef8 (diff) |
kdrive: Unmap vesa device when disabled
Diffstat (limited to 'hw/kdrive/fbdev/fbdev.c')
-rw-r--r-- | hw/kdrive/fbdev/fbdev.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index 4bd800e6b..b5e2df9f9 100644 --- a/hw/kdrive/fbdev/fbdev.c +++ b/hw/kdrive/fbdev/fbdev.c @@ -21,7 +21,7 @@ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. */ -/* $XFree86: xc/programs/Xserver/hw/kdrive/fbdev/fbdev.c,v 1.26 2001/07/19 08:46:30 keithp Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/kdrive/fbdev/fbdev.c,v 1.27 2001/07/20 19:35:29 keithp Exp $ */ #include "fbdev.h" @@ -122,8 +122,8 @@ fbdevScreenInitialize (KdScreenInfo *screen, FbdevScrPriv *scrpriv) case FB_VISUAL_PSEUDOCOLOR: if (gray) { - screen->fb[0].visuals = ((1 << StaticGray) | - (1 << GrayScale)); + screen->fb[0].visuals = (1 << StaticGray); + /* could also support GrayScale, but what's the point? */ } else { |