Home | History | Annotate | Line # | Download | only in libbug
diskrd.c revision 1.1
      1 /*	$NetBSD: diskrd.c,v 1.1 1996/05/17 19:31:50 chuck Exp $	*/
      2 
      3 /*
      4  * bug routines -- assumes that the necessary sections of memory
      5  * are preserved.
      6  */
      7 #include <sys/types.h>
      8 #include <machine/prom.h>
      9 
     10 /* returns 0: success, nonzero: error */
     11 int
     12 mvmeprom_diskrd(arg)
     13 	struct mvmeprom_dskio *arg;
     14 {
     15 	int ret;
     16 
     17 	MVMEPROM_ARG1(arg);
     18 	MVMEPROM_CALL(MVMEPROM_DSKRD);
     19 	MVMEPROM_STATRET(ret);
     20 }
     21