Module Name:    src
Committed By:   macallan
Date:           Tue Oct  1 06:21:10 UTC 2024

Modified Files:
        src/sys/arch/hppa/dev: hyperfb.c

Log Message:
remove sc_putchar - don't need it anymore


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/hppa/dev/hyperfb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/hppa/dev/hyperfb.c
diff -u src/sys/arch/hppa/dev/hyperfb.c:1.15 src/sys/arch/hppa/dev/hyperfb.c:1.16
--- src/sys/arch/hppa/dev/hyperfb.c:1.15	Wed Sep 11 13:31:13 2024
+++ src/sys/arch/hppa/dev/hyperfb.c	Tue Oct  1 06:21:10 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: hyperfb.c,v 1.15 2024/09/11 13:31:13 macallan Exp $	*/
+/*	$NetBSD: hyperfb.c,v 1.16 2024/10/01 06:21:10 macallan Exp $	*/
 
 /*
  * Copyright (c) 2024 Michael Lorenz
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hyperfb.c,v 1.15 2024/09/11 13:31:13 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hyperfb.c,v 1.16 2024/10/01 06:21:10 macallan Exp $");
 
 #include "opt_cputype.h"
 #include "opt_hyperfb.h"
@@ -92,7 +92,6 @@ struct	hyperfb_softc {
 	struct wsscreen_list sc_screenlist;
 	struct vcons_data vd;
 	int sc_mode;
-	void (*sc_putchar)(void *, int, int, u_int, long);
 	u_char sc_cmap_red[256];
 	u_char sc_cmap_green[256];
 	u_char sc_cmap_blue[256];
@@ -554,7 +553,6 @@ hyperfb_init_screen(void *cookie, struct
 
 	ri->ri_hw = scr;
 
-	sc->sc_putchar = ri->ri_ops.putchar;
 	ri->ri_ops.copyrows = hyperfb_copyrows;
 	ri->ri_ops.copycols = hyperfb_copycols;
 	ri->ri_ops.eraserows = hyperfb_eraserows;

Reply via email to