remove mainbus.c: never actually used

This commit is contained in:
chuck 1996-04-26 19:03:28 +00:00
parent d80422cd46
commit 7625dd4cb4
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
void mainbus_attach __P((struct device *, struct device *, void *));
int mainbus_match __P((struct device *, void *, void *));
struct mainbus_softc {
struct device sc_dev;
};
struct cfdriver mainbus_cd = {
NULL, "mainbus_", mainbus_match, mainbus_attach,
DV_DULL, sizeof(struct mainbus_softc), 0
};
int
mainbus_match(parent, cf, args)
struct device *parent;
void *cf;
void *args;
{
return 1;
}
void
mainbus_attach(parent, self, args)
struct device *parent, *self;
void *args;
{
while (config_found(self, NULL, NULL) != NULL)
;
}