diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-02 07:58:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-02 07:58:40 +0000 |
commit | ca62dd361c3a0b94dd96de8e6500aaa482dc7e03 (patch) | |
tree | 6beb917397e5d655817707da3e5d18d8ae08d2f0 | |
parent | 6d559aba0dac9261aad1563f6e9d74de5202a542 (diff) |
provide config_make_softc proto
-rw-r--r-- | sys/sys/device.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/device.h b/sys/sys/device.h index dd7ae04873d..4c403a08506 100644 --- a/sys/sys/device.h +++ b/sys/sys/device.h @@ -1,4 +1,4 @@ -/* $OpenBSD: device.h,v 1.7 1996/06/23 19:32:56 maja Exp $ */ +/* $OpenBSD: device.h,v 1.8 1996/07/02 07:58:39 deraadt Exp $ */ /* $NetBSD: device.h,v 1.15 1996/04/09 20:55:24 cgd Exp $ */ /* @@ -175,6 +175,8 @@ struct device *config_found_sm __P((struct device *, void *, cfprint_t, struct device *config_rootfound __P((char *, void *)); void config_scan __P((cfscan_t, struct device *)); struct device *config_attach __P((struct device *, void *, void *, cfprint_t)); +struct device *config_make_softc __P((struct device *parent, + struct cfdata *cf)); void evcnt_attach __P((struct device *, const char *, struct evcnt *)); /* compatibility definitions */ |