1 /* $NetBSD: getbrdid.c,v 1.1 1996/05/17 19:31:52 chuck Exp $ */ 2 3 /* 4 * bug routines -- assumes that the necessary sections of memory 5 * are preserved. 6 */ 7 8 #include <sys/types.h> 9 #include <machine/prom.h> 10 11 /* BUG - query board routines */ 12 struct mvmeprom_brdid * 13 mvmeprom_getbrdid() 14 { 15 struct mvmeprom_brdid *id; 16 17 MVMEPROM_NOARG(); 18 MVMEPROM_CALL(MVMEPROM_GETBRDID); 19 MVMEPROM_RETURN(id); 20 } 21