diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-03-26 18:13:57 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-03-26 18:13:57 +0000 |
commit | aa8626329e6547067fbf72bf78b010cd4c5ca3f1 (patch) | |
tree | 0c39fb14185f1b46def0657b6468e8c3b807607b /sys/arch | |
parent | abf1fd048184c1886f83a22972517e98786d4708 (diff) |
de-static
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc/dev/obio.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/arch/sparc/dev/obio.c b/sys/arch/sparc/dev/obio.c index 41ae322eb3e..23ceb723622 100644 --- a/sys/arch/sparc/dev/obio.c +++ b/sys/arch/sparc/dev/obio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: obio.c,v 1.23 2015/01/14 21:35:43 miod Exp $ */ +/* $OpenBSD: obio.c,v 1.24 2015/03/26 18:13:56 miod Exp $ */ /* $NetBSD: obio.c,v 1.37 1997/07/29 09:58:11 fair Exp $ */ /* @@ -71,20 +71,20 @@ struct bus_softc { /* autoconfiguration driver */ -static int busmatch(struct device *, void *, void *); -static void obioattach(struct device *, struct device *, void *); -static void vmesattach(struct device *, struct device *, void *); -static void vmelattach(struct device *, struct device *, void *); -static void vmeattach(struct device *, struct device *, void *); - -int busprint(void *, const char *); -int vmeprint(void *, const char *); -static int busattach(struct device *, void *, void *, int); -int obio_scan(struct device *, void *, void *); -int vmes_scan(struct device *, void *, void *); -int vmel_scan(struct device *, void *, void *); -void vmebus_translate(struct device *, struct confargs *, int); -int vmeintr(void *); +int busmatch(struct device *, void *, void *); +void obioattach(struct device *, struct device *, void *); +void vmesattach(struct device *, struct device *, void *); +void vmelattach(struct device *, struct device *, void *); +void vmeattach(struct device *, struct device *, void *); + +int busprint(void *, const char *); +int vmeprint(void *, const char *); +int busattach(struct device *, void *, void *, int); +int obio_scan(struct device *, void *, void *); +int vmes_scan(struct device *, void *, void *); +int vmel_scan(struct device *, void *, void *); +void vmebus_translate(struct device *, struct confargs *, int); +int vmeintr(void *); struct cfattach obio_ca = { sizeof(struct bus_softc), busmatch, obioattach |