fix signatures of cpu_reset_real and cpu_reset_proxy, broken in r331878

When I moved these functions from i386 and amd64 to x86 I dropped their
prototype declarations (that were correct) and left only their definitions
that became incorrect.

Reported by:	bde
MFC after:	15 days
X-MFC with:	r331878
This commit is contained in:
Andriy Gapon 2018-04-03 06:46:26 +00:00
parent 8857481840
commit b7b25af06a

View File

@ -251,7 +251,7 @@ cpu_halt(void)
}
static void
cpu_reset_real()
cpu_reset_real(void)
{
struct region_descriptor null_idt;
int b;
@ -324,7 +324,7 @@ cpu_reset_real()
#ifdef SMP
static void
cpu_reset_proxy()
cpu_reset_proxy(void)
{
cpu_reset_proxy_active = 1;
@ -338,7 +338,7 @@ cpu_reset_proxy()
#endif
void
cpu_reset()
cpu_reset(void)
{
#ifdef SMP
cpuset_t map;