Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Mar 2002 01:27:45 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 7930 for review
Message-ID:  <200203190927.g2J9Rjl79759@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=7930

Change 7930 by peter@peter_overcee on 2002/03/19 01:27:21

	collect some function prototypes together in an include file
	rather than [incompletely] scattering them around.

Affected files ...

... //depot/projects/ia64/sys/ia64/acpica/madt.c#5 edit
... //depot/projects/ia64/sys/ia64/ia64/efi.c#2 edit
... //depot/projects/ia64/sys/ia64/ia64/machdep.c#16 edit
... //depot/projects/ia64/sys/ia64/ia64/mp_machdep.c#9 edit
... //depot/projects/ia64/sys/ia64/include/cpu.h#2 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/acpica/madt.c#5 (text+ko) ====

@@ -28,7 +28,6 @@
 
 #include "acpi.h"
 
-void cpu_mp_add(uint, uint, uint);
 struct sapic *sapic_create(int, int, u_int64_t);
 
 #pragma pack(1)

==== //depot/projects/ia64/sys/ia64/ia64/efi.c#2 (text+ko) ====


==== //depot/projects/ia64/sys/ia64/ia64/machdep.c#16 (text+ko) ====

@@ -82,9 +82,6 @@
 #include <machine/rse.h>
 #include <machine/unwind.h>
 
-void ia64_probe_sapics(void);
-void map_pal_code(void);
-
 #ifdef SKI
 extern void ia64_ski_init(void);
 #endif

==== //depot/projects/ia64/sys/ia64/ia64/mp_machdep.c#9 (text+ko) ====

@@ -52,10 +52,7 @@
 #include <machine/smp.h>
 #include <machine/fpu.h>
 
-void cpu_mp_add(uint, uint, uint);
 void ia64_ap_startup(void);
-void map_pal_code(void);
-int ia64_count_aps(void);
 
 extern vm_offset_t vhpt_base, vhpt_size;
 

==== //depot/projects/ia64/sys/ia64/include/cpu.h#2 (text+ko) ====

@@ -135,6 +135,11 @@
 void	fork_trampoline __P((void));				/* MAGIC */
 void	syscall __P((int, u_int64_t *, struct trapframe *));
 void	trap __P((int vector, int imm, struct trapframe *framep));
+void	ia64_probe_sapics(void);
+int	ia64_count_aps(void);
+void	map_pal_code(void);
+void	cpu_mp_add(uint, uint, uint);
+
 
 /*
  * Return contents of in-cpu fast counter as a sort of "bogo-time"

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203190927.g2J9Rjl79759>