Module Name: src
Committed By: martin
Date: Wed Dec 18 10:09:56 UTC 2013
Modified Files:
src/sys/arch/sparc/stand/ofwboot: Locore.c
Log Message:
The "close" call returns no arguments
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/sparc/stand/ofwboot/Locore.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/sparc/stand/ofwboot/Locore.c
diff -u src/sys/arch/sparc/stand/ofwboot/Locore.c:1.12 src/sys/arch/sparc/stand/ofwboot/Locore.c:1.13
--- src/sys/arch/sparc/stand/ofwboot/Locore.c:1.12 Sat May 21 15:50:42 2011
+++ src/sys/arch/sparc/stand/ofwboot/Locore.c Wed Dec 18 10:09:56 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: Locore.c,v 1.12 2011/05/21 15:50:42 tsutsui Exp $ */
+/* $NetBSD: Locore.c,v 1.13 2013/12/18 10:09:56 martin Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -231,7 +231,7 @@ OF_close(int handle)
args.name = ADR2CELL("close");
args.nargs = 1;
- args.nreturns = 1;
+ args.nreturns = 0;
args.handle = HDL2CELL(handle);
openfirmware(&args);
}