diff options
| author | macallan <macallan@NetBSD.org> | 2021-05-21 20:23:35 +0000 |
|---|---|---|
| committer | macallan <macallan@NetBSD.org> | 2021-05-21 20:23:35 +0000 |
| commit | a975af2e7e06dda7cd4a5d71e8d677dd33787420 (patch) | |
| tree | a70774ffadb2d26855f3b8a5f6b90dc2f733dfce /sys | |
| parent | 86be99eeebe807ccb4c03e0ed91579a8778c84ec (diff) | |
fix wsdisplay attachment in the New Order Of Things
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/pci/voyager/voyagerfb.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/pci/voyager/voyagerfb.c b/sys/dev/pci/voyager/voyagerfb.c index 14d48f66b29..7bf90cb8893 100644 --- a/sys/dev/pci/voyager/voyagerfb.c +++ b/sys/dev/pci/voyager/voyagerfb.c @@ -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_t self, void *aux) 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 |
