diff options
author | Peter Tribble <peter.tribble@gmail.com> | 2019-01-30 16:33:34 +0000 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2019-02-01 19:01:48 +0000 |
commit | 1bc1e552b353b59f21e7697fe988ec2d86d09d4b (patch) | |
tree | e9fba05b933858518f1e468bf5ea1222a96d44d8 | |
parent | 406d4d29fb52df8ec016b6e9a83e030013fa1514 (diff) | |
download | illumos-joyent-1bc1e552b353b59f21e7697fe988ec2d86d09d4b.tar.gz |
10325 sparc also needs plat_diagpath for consconfig_dacf
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Andy Fiddaman <af@citrus-it.net>
Reviewed by: Gergő Mihály Doma <domag02@gmail.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
-rw-r--r-- | usr/src/uts/sparc/io/consplat.c | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/usr/src/uts/sparc/io/consplat.c b/usr/src/uts/sparc/io/consplat.c index 6ca09e0b3a..41b3aaa117 100644 --- a/usr/src/uts/sparc/io/consplat.c +++ b/usr/src/uts/sparc/io/consplat.c @@ -24,7 +24,9 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" +/* + * Copyright 2019 Peter Tribble. + */ /* * isa-specific console configuration routines @@ -112,10 +114,10 @@ plat_fbpath(void) char * plat_mousepath(void) { - static char *mousepath = NULL; - static char buf[MAXPATHLEN]; - char *path, *p, *q; - major_t zs_major, kb_major; + static char *mousepath = NULL; + static char buf[MAXPATHLEN]; + char *path, *p, *q; + major_t zs_major, kb_major; if (mousepath != NULL) return (mousepath); @@ -196,6 +198,15 @@ plat_stdoutpath(void) return (outpath); } +/* + * stub definition for consconfig_dacf + */ +char * +plat_diagpath(void) +{ + return (NULL); +} + int plat_stdin_is_keyboard(void) { |