diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-05-12 13:06:26 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-05-12 13:06:26 +0000 |
commit | 8442bcb5363f5dbf14f47672c40b9bd8accf5fd2 (patch) | |
tree | dcba21f2465749f250b8dd694c5ab045772f11a4 /driver/xf86-video-nv | |
parent | 03e581399db07433dd54da891ffe09dbec74fa8f (diff) |
Remove calls to miInitializeBackingStore() and includes of mibstore.h
mibstore.h defines miInitializeBackingStore() as an empty stub, and
goes away in xserver 1.14.
Diffstat (limited to 'driver/xf86-video-nv')
-rw-r--r-- | driver/xf86-video-nv/src/g80_driver.c | 2 | ||||
-rw-r--r-- | driver/xf86-video-nv/src/nv_driver.c | 1 | ||||
-rw-r--r-- | driver/xf86-video-nv/src/nv_include.h | 3 | ||||
-rw-r--r-- | driver/xf86-video-nv/src/riva_driver.c | 1 | ||||
-rw-r--r-- | driver/xf86-video-nv/src/riva_include.h | 3 |
5 files changed, 0 insertions, 10 deletions
diff --git a/driver/xf86-video-nv/src/g80_driver.c b/driver/xf86-video-nv/src/g80_driver.c index cc4e197e2..719b96c27 100644 --- a/driver/xf86-video-nv/src/g80_driver.c +++ b/driver/xf86-video-nv/src/g80_driver.c @@ -34,7 +34,6 @@ #include <xf86Resources.h> #endif #include <mipointer.h> -#include <mibstore.h> #include <micmap.h> #include <xf86cmap.h> #include <fb.h> @@ -833,7 +832,6 @@ G80ScreenInit(SCREEN_INIT_ARGS_DECL) } } - miInitializeBackingStore(pScreen); xf86SetBackingStore(pScreen); xf86SetSilkenMouse(pScreen); diff --git a/driver/xf86-video-nv/src/nv_driver.c b/driver/xf86-video-nv/src/nv_driver.c index ceb6d2ebe..a8cf55510 100644 --- a/driver/xf86-video-nv/src/nv_driver.c +++ b/driver/xf86-video-nv/src/nv_driver.c @@ -2554,7 +2554,6 @@ NVScreenInit(SCREEN_INIT_ARGS_DECL) if (!pNv->NoAccel) NVAccelInit(pScreen); - miInitializeBackingStore(pScreen); xf86SetBackingStore(pScreen); xf86SetSilkenMouse(pScreen); diff --git a/driver/xf86-video-nv/src/nv_include.h b/driver/xf86-video-nv/src/nv_include.h index fb190bf99..f174eef74 100644 --- a/driver/xf86-video-nv/src/nv_include.h +++ b/driver/xf86-video-nv/src/nv_include.h @@ -24,9 +24,6 @@ /* All drivers initialising the SW cursor need this */ #include "mipointer.h" -/* All drivers implementing backing store need this */ -#include "mibstore.h" - #include "micmap.h" #include "xf86DDC.h" diff --git a/driver/xf86-video-nv/src/riva_driver.c b/driver/xf86-video-nv/src/riva_driver.c index e0667ef47..759501e13 100644 --- a/driver/xf86-video-nv/src/riva_driver.c +++ b/driver/xf86-video-nv/src/riva_driver.c @@ -1168,7 +1168,6 @@ RivaScreenInit(SCREEN_INIT_ARGS_DECL) if (!pRiva->NoAccel) RivaAccelInit(pScreen); - miInitializeBackingStore(pScreen); xf86SetBackingStore(pScreen); xf86SetSilkenMouse(pScreen); diff --git a/driver/xf86-video-nv/src/riva_include.h b/driver/xf86-video-nv/src/riva_include.h index f2c5302b6..c7aeef7b5 100644 --- a/driver/xf86-video-nv/src/riva_include.h +++ b/driver/xf86-video-nv/src/riva_include.h @@ -22,9 +22,6 @@ /* All drivers initialising the SW cursor need this */ #include "mipointer.h" -/* All drivers implementing backing store need this */ -#include "mibstore.h" - #include "micmap.h" #include "xf86DDC.h" |