diff options
author | 2015-03-26 18:13:56 +0000 | |
---|---|---|
committer | 2015-03-26 18:13:56 +0000 | |
commit | 7da83a81216ecc1530c506e6cf5064715a4eb5f0 (patch) | |
tree | 836ab395c34d2147c172c8ae5e4d82d197be795b | |
parent | Allow input/printing/conversion of terabyte sizes. Which GPT partitons (diff) | |
download | wireguard-openbsd-7da83a81216ecc1530c506e6cf5064715a4eb5f0.tar.xz wireguard-openbsd-7da83a81216ecc1530c506e6cf5064715a4eb5f0.zip |
de-static
-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 |