diff options
author | Robin Cutshaw <robin@intercore.com> | 1999-12-30 03:03:21 +0000 |
---|---|---|
committer | Robin Cutshaw <robin@intercore.com> | 1999-12-30 03:03:21 +0000 |
commit | 30e35cb44b6ea11d0eac8ce0d986517f3224852a (patch) | |
tree | a4bb0182dbcf5e4ce8cd61ed4e257815d9af3957 /hw/kdrive/fbdev/fbdev.c | |
parent | f13b792a3a8d307a18cd6a41aa5a06622009e42f (diff) |
3516. Jumbo Tiny-X patch with Itsy support (#3527, Keith Packard).xf-3_9_17xf-3_9_16Za
Diffstat (limited to 'hw/kdrive/fbdev/fbdev.c')
-rw-r--r-- | hw/kdrive/fbdev/fbdev.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index c268ae2b1..65506fd0b 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: $ */ +/* $XFree86: xc/programs/Xserver/hw/kdrive/fbdev/fbdev.c,v 1.1 1999/11/19 13:53:52 hohndel Exp $ */ #include "fbdev.h" @@ -125,6 +125,12 @@ fbdevScreenInit (KdScreenInfo *screen) return TRUE; } +Bool +fbdevInitScreen (ScreenPtr pScreen) +{ + return TRUE; +} + void fbdevPreserve (KdCardInfo *card) { @@ -151,8 +157,10 @@ fbdevDPMS (ScreenPtr pScreen, int mode) KdScreenPriv(pScreen); FbdevPriv *priv = pScreenPriv->card->driver; +#ifdef FBIOPUT_POWERMODE if (!ioctl (priv->fd, FBIOPUT_POWERMODE, &mode)) return TRUE; +#endif return FALSE; } |