Module Name:    src
Committed By:   macallan
Date:           Fri May 21 20:23:35 UTC 2021

Modified Files:
        src/sys/dev/pci/voyager: voyagerfb.c

Log Message:
fix wsdisplay attachment in the New Order Of Things


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/pci/voyager/voyagerfb.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/dev/pci/voyager/voyagerfb.c
diff -u src/sys/dev/pci/voyager/voyagerfb.c:1.31 src/sys/dev/pci/voyager/voyagerfb.c:1.32
--- src/sys/dev/pci/voyager/voyagerfb.c:1.31	Fri May 21 20:22:15 2021
+++ src/sys/dev/pci/voyager/voyagerfb.c	Fri May 21 20:23:35 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: voyagerfb.c,v 1.31 2021/05/21 20:22:15 macallan Exp $	*/
+/*	$NetBSD: voyagerfb.c,v 1.32 2021/05/21 20:23:35 macallan Exp $	*/
 
 /*
  * Copyright (c) 2009, 2011 Michael Lorenz
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: voyagerfb.c,v 1.31 2021/05/21 20:22:15 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: voyagerfb.c,v 1.32 2021/05/21 20:23:35 macallan Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -363,7 +363,9 @@ voyagerfb_attach(device_t parent, device
 	aa.accessops = &voyagerfb_accessops;
 	aa.accesscookie = &sc->vd;
 
-	config_found(sc->sc_dev, &aa, wsemuldisplaydevprint, CFARG_EOL);
+	config_found(sc->sc_dev, &aa, wsemuldisplaydevprint,
+	    CFARG_IATTR, "wsemuldisplaydev",
+	    CFARG_EOL);
 }
 
 static int

Reply via email to