Module Name:    src
Committed By:   mrg
Date:           Thu Jul  7 06:01:12 UTC 2011

Modified Files:
        src/sys/arch/prep/stand/boot: boot.h
        src/sys/arch/rs6000/stand/boot: boot.h

Log Message:
remove inline from some non-inline function prototypes.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/prep/stand/boot/boot.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/rs6000/stand/boot/boot.h

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/prep/stand/boot/boot.h
diff -u src/sys/arch/prep/stand/boot/boot.h:1.8 src/sys/arch/prep/stand/boot/boot.h:1.9
--- src/sys/arch/prep/stand/boot/boot.h:1.8	Tue Jun 20 05:49:09 2006
+++ src/sys/arch/prep/stand/boot/boot.h	Thu Jul  7 06:01:12 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: boot.h,v 1.8 2006/06/20 05:49:09 garbled Exp $	*/
+/*	$NetBSD: boot.h,v 1.9 2011/07/07 06:01:12 mrg Exp $	*/
 
 #define TICKS_PER_SEC	(66666667 / 4)		/* 66MHz */
 #define NS_PER_TICK	(1000000000 / TICKS_PER_SEC)
@@ -38,7 +38,7 @@
  * io
  */
 void outb(int, char);
-inline void outw(int, u_int16_t);
+void outw(int, u_int16_t);
 u_char inb(int);
 u_long local_to_PCI(u_long);
 void unlockVideo(int);

Index: src/sys/arch/rs6000/stand/boot/boot.h
diff -u src/sys/arch/rs6000/stand/boot/boot.h:1.1 src/sys/arch/rs6000/stand/boot/boot.h:1.2
--- src/sys/arch/rs6000/stand/boot/boot.h:1.1	Mon Dec 17 19:09:45 2007
+++ src/sys/arch/rs6000/stand/boot/boot.h	Thu Jul  7 06:01:12 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: boot.h,v 1.1 2007/12/17 19:09:45 garbled Exp $	*/
+/*	$NetBSD: boot.h,v 1.2 2011/07/07 06:01:12 mrg Exp $	*/
 
 #define TICKS_PER_SEC	(66666667 / 4)		/* 66MHz */
 #define NS_PER_TICK	(1000000000 / TICKS_PER_SEC)
@@ -39,7 +39,7 @@
  */
 int setup_iocc(void);
 void outb(int, char);
-inline void outw(int, u_int16_t);
+void outw(int, u_int16_t);
 u_char inb(int);
 
 /*

Reply via email to