xref: /netbsd-src/sys/arch/sparc/dev/cons.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: cons.h,v 1.5 2005/11/16 00:49:03 uwe Exp $	*/
2 
3 
4 /*
5  * PROM I/O nodes and arguments are prepared by consinit().
6  * Drivers can examine these when looking for a console device match.
7  */
8 extern int prom_stdin_node;
9 extern int prom_stdout_node;
10 extern char prom_stdin_args[];
11 extern char prom_stdout_args[];
12 
13 #ifdef	KGDB
14 struct zs_chanstate;
15 void zs_kgdb_init(void);
16 void zskgdb(struct zs_chanstate *);
17 #endif
18