Module Name: src Committed By: jdc Date: Mon Mar 26 10:31:10 UTC 2018
Modified Files: src/sys/arch/sparc64/dev: ffb.c Log Message: Correct a typo in the openprom variable name. To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/sys/arch/sparc64/dev/ffb.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/sparc64/dev/ffb.c diff -u src/sys/arch/sparc64/dev/ffb.c:1.61 src/sys/arch/sparc64/dev/ffb.c:1.62 --- src/sys/arch/sparc64/dev/ffb.c:1.61 Fri May 19 19:25:53 2017 +++ src/sys/arch/sparc64/dev/ffb.c Mon Mar 26 10:31:10 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: ffb.c,v 1.61 2017/05/19 19:25:53 macallan Exp $ */ +/* $NetBSD: ffb.c,v 1.62 2018/03/26 10:31:10 jdc Exp $ */ /* $OpenBSD: creator.c,v 1.20 2002/07/30 19:48:15 jason Exp $ */ /* @@ -33,7 +33,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ffb.c,v 1.61 2017/05/19 19:25:53 macallan Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ffb.c,v 1.62 2018/03/26 10:31:10 jdc Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -260,7 +260,7 @@ ffb_attach(device_t self) /* Check if a console resolution "<device>:r<res>" is set. */ if (sc->sc_console) { - out_dev = prom_getpropstring(sc->sc_node, "output_device"); + out_dev = prom_getpropstring(sc->sc_node, "output-device"); if (out_dev != NULL && strlen(out_dev) != 0 && strstr(out_dev, ":r") != NULL) try_edid = 0;