diff options
| author | Kazutaka YOKOTA <yokota@FreeBSD.org> | 1999-01-12 10:35:58 +0000 |
|---|---|---|
| committer | Kazutaka YOKOTA <yokota@FreeBSD.org> | 1999-01-12 10:35:58 +0000 |
| commit | 90500a9d1a9fbb8a4239d14452ad947fb562884a (patch) | |
| tree | 6cf88e05de4aba36d6f54148f7cbd217d73a1946 /sys/dev/fb/fb.c | |
| parent | 26fd36dffaee87336f8ab30af5c0057cc65640c4 (diff) | |
Notes
Diffstat (limited to 'sys/dev/fb/fb.c')
| -rw-r--r-- | sys/dev/fb/fb.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/sys/dev/fb/fb.c b/sys/dev/fb/fb.c index e765bc2ab93a..faa9c2040640 100644 --- a/sys/dev/fb/fb.c +++ b/sys/dev/fb/fb.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: $ + * $Id: fb.c,v 1.1 1999/01/09 02:44:49 yokota Exp $ */ #include "fb.h" @@ -48,17 +48,20 @@ * for the kernel console. The arrays will be increased dynamically * when necessary. */ -static video_adapter_t *adp_ini; -static video_switch_t *vidsw_ini; -static struct cdevsw *vidcdevsw_ini; -static video_adapter_t **adapter = &adp_ini; static int adapters = 1; +static video_adapter_t *adp_ini; +static video_adapter_t **adapter = &adp_ini; +static video_switch_t *vidsw_ini; video_switch_t **vidsw = &vidsw_ini; -static struct cdevsw **vidcdevsw = &vidcdevsw_ini; + +#ifdef FB_INSTALL_CDEV #define ARRAY_DELTA 4 +static struct cdevsw *vidcdevsw_ini; +static struct cdevsw **vidcdevsw = &vidcdevsw_ini; + static void vid_realloc_array(void) { @@ -94,6 +97,8 @@ vid_realloc_array(void) printf("fb: new array size %d\n", adapters); } +#endif /* FB_INSTALL_CDEV */ + /* * Low-level frame buffer driver functions * frame buffer subdrivers, such as the VGA driver, call these functions |
