From 7625dd4cb471f0d19c133892d39d9ffc8ce355d2 Mon Sep 17 00:00:00 2001 From: chuck Date: Fri, 26 Apr 1996 19:03:28 +0000 Subject: [PATCH] remove mainbus.c: never actually used --- sys/arch/mvme68k/mvme68k/mainbus.c | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 sys/arch/mvme68k/mvme68k/mainbus.c diff --git a/sys/arch/mvme68k/mvme68k/mainbus.c b/sys/arch/mvme68k/mvme68k/mainbus.c deleted file mode 100644 index ffd3708dbf6a..000000000000 --- a/sys/arch/mvme68k/mvme68k/mainbus.c +++ /dev/null @@ -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) - ; -}