remove dummy "load_font" entries

This commit is contained in:
drochner 1999-01-11 21:54:22 +00:00
parent 1eba733d91
commit 35eeb3f1cd
5 changed files with 12 additions and 67 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cfb.c,v 1.21 1998/11/19 15:38:20 mrg Exp $ */
/* $NetBSD: cfb.c,v 1.22 1999/01/11 21:54:22 drochner Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -29,7 +29,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: cfb.c,v 1.21 1998/11/19 15:38:20 mrg Exp $");
__KERNEL_RCSID(0, "$NetBSD: cfb.c,v 1.22 1999/01/11 21:54:22 drochner Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -104,7 +104,6 @@ static int cfb_alloc_screen __P((void *, const struct wsscreen_descr *,
void **, int *, int *, long *));
static void cfb_free_screen __P((void *, void *));
static void cfb_show_screen __P((void *, void *));
static int cfb_load_font __P((void *, void *, int, int, int, void *));
struct wsdisplay_accessops cfb_accessops = {
cfbioctl,
@ -112,7 +111,7 @@ struct wsdisplay_accessops cfb_accessops = {
cfb_alloc_screen,
cfb_free_screen,
cfb_show_screen,
cfb_load_font
0 /* load_font */
};
int
@ -366,16 +365,6 @@ cfb_show_screen(v, cookie)
{
}
static int
cfb_load_font(v, cookie, first, num, stride, data)
void *v;
void *cookie;
int first, num, stride;
void *data;
{
return (EINVAL);
}
int
cfb_cnattach(addr)
tc_addr_t addr;

View File

@ -1,4 +1,4 @@
/* $NetBSD: sfb.c,v 1.21 1998/11/19 15:38:20 mrg Exp $ */
/* $NetBSD: sfb.c,v 1.22 1999/01/11 21:54:22 drochner Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -29,7 +29,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: sfb.c,v 1.21 1998/11/19 15:38:20 mrg Exp $");
__KERNEL_RCSID(0, "$NetBSD: sfb.c,v 1.22 1999/01/11 21:54:22 drochner Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -101,7 +101,6 @@ static int sfb_alloc_screen __P((void *, const struct wsscreen_descr *,
void **, int *, int *, long *));
static void sfb_free_screen __P((void *, void *));
static void sfb_show_screen __P((void *, void *));
static int sfb_load_font __P((void *, void *, int, int, int, void *));
void sfb_blank __P((struct sfb_devconfig *));
void sfb_unblank __P((struct sfb_devconfig *));
@ -120,7 +119,7 @@ struct wsdisplay_accessops sfb_accessops = {
sfb_alloc_screen,
sfb_free_screen,
sfb_show_screen,
sfb_load_font
0 /* load_font */
};
int
@ -485,16 +484,6 @@ sfb_show_screen(v, cookie)
{
}
static int
sfb_load_font(v, cookie, first, num, stride, data)
void *v;
void *cookie;
int first, num, stride;
void *data;
{
return (EINVAL);
}
int
sfb_cnattach(addr)
tc_addr_t addr;

View File

@ -1,4 +1,4 @@
/* $NetBSD: pfb.c,v 1.2 1998/11/24 06:34:10 sakamoto Exp $ */
/* $NetBSD: pfb.c,v 1.3 1999/01/11 21:54:23 drochner Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -95,7 +95,6 @@ static int pfb_alloc_screen __P((void *, const struct wsscreen_descr *,
void **, int *, int *, long *));
static void pfb_free_screen __P((void *, void *));
static void pfb_show_screen __P((void *, void *));
static int pfb_load_font __P((void *, void *, int, int, int, void *));
struct wsdisplay_accessops pfb_accessops = {
pfb_ioctl,
@ -103,7 +102,7 @@ struct wsdisplay_accessops pfb_accessops = {
pfb_alloc_screen,
pfb_free_screen,
pfb_show_screen,
pfb_load_font
0 /* load_font */
};
static void pfb_common_init __P((int addr, struct pfb_devconfig *));
@ -279,16 +278,6 @@ pfb_show_screen(v, cookie)
{
}
static int
pfb_load_font(v, cookie, first, num, stride, data)
void *v;
void *cookie;
int first, num, stride;
void *data;
{
return EINVAL;
}
int
pfb_cnattach(addr)
int addr;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ofb.c,v 1.5 1998/12/22 19:38:35 tsubai Exp $ */
/* $NetBSD: ofb.c,v 1.6 1999/01/11 21:54:23 drochner Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@ -95,7 +95,6 @@ static int ofb_alloc_screen __P((void *, const struct wsscreen_descr *,
void **, int *, int *, long *));
static void ofb_free_screen __P((void *, void *));
static void ofb_show_screen __P((void *, void *));
static int ofb_load_font __P((void *, void *, int, int, int, void *));
struct wsdisplay_accessops ofb_accessops = {
ofb_ioctl,
@ -103,7 +102,7 @@ struct wsdisplay_accessops ofb_accessops = {
ofb_alloc_screen,
ofb_free_screen,
ofb_show_screen,
ofb_load_font
0 /* load_font */
};
static void ofb_common_init __P((int, struct ofb_devconfig *));
@ -367,16 +366,6 @@ ofb_show_screen(v, cookie)
{
}
static int
ofb_load_font(v, cookie, first, num, stride, data)
void *v;
void *cookie;
int first, num, stride;
void *data;
{
return EINVAL;
}
int
ofb_cnattach()
{

View File

@ -1,4 +1,4 @@
/* $NetBSD: smg.c,v 1.10 1998/11/29 15:04:56 ragge Exp $ */
/* $NetBSD: smg.c,v 1.11 1999/01/11 21:54:23 drochner Exp $ */
/*
* Copyright (c) 1998 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -114,7 +114,6 @@ static int smg_alloc_screen __P((void *, const struct wsscreen_descr *,
void **, int *, int *, long *));
static void smg_free_screen __P((void *, void *));
static void smg_show_screen __P((void *, void *));
static int smg_load_font __P((void *, void *, int, int, int, void *));
static void smg_crsr_blink __P((void *));
const struct wsdisplay_accessops smg_accessops = {
@ -123,7 +122,7 @@ const struct wsdisplay_accessops smg_accessops = {
smg_alloc_screen,
smg_free_screen,
smg_show_screen,
smg_load_font
0 /* load_font */
};
struct smg_screen {
@ -434,16 +433,6 @@ smg_show_screen(v, cookie)
curscr = ss;
}
static int
smg_load_font(v, cookie, first, num, stride, data)
void *v;
void *cookie;
int first, num, stride;
void *data;
{
return 0;
}
cons_decl(smg);
#define WSCONSOLEMAJOR 68