Latent support for revamped "local bus" support.

This commit is contained in:
matt 1998-10-27 21:18:52 +00:00
parent e5c050d79c
commit 4cbbe0abff
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.31 1998/10/06 20:50:18 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.32 1998/10/27 21:18:53 matt Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden
@ -61,6 +61,7 @@ struct cpu_dep {
void (*cpu_halt) __P((void)); /* Cpu dependent halt call */
void (*cpu_reboot) __P((int)); /* Cpu dependent reboot call */
void (*cpu_clrf) __P((void)); /* Clear cold/warm start flags */
void (*cpu_subconf) __P((struct device *));/*config cpu dep. devs */
};
extern struct cpu_dep *dep_call; /* Holds pointer to current CPU struct. */

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.c,v 1.35 1998/10/06 20:46:01 thorpej Exp $ */
/* $NetBSD: autoconf.c,v 1.36 1998/10/27 21:18:52 matt Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@ -220,7 +220,8 @@ mainbus_attach(parent, self, hej)
}
}
#endif
if (dep_call->cpu_subconf)
(*dep_call->cpu_subconf)(self);
}
#if VAX8600