summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJoerg Jung <jung@cvs.openbsd.org>2015-12-11 20:15:51 +0000
committerJoerg Jung <jung@cvs.openbsd.org>2015-12-11 20:15:51 +0000
commita6f383a26c7edc7e2d39742e9ebd5bcb5c939cf3 (patch)
tree2c8b6b62aa0bc52c67eca9a6c415759d90ada460 /sys/dev
parenta2fbbc4db82be1c4847dfbae6b5d81b6c00e165d (diff)
remove no longer needed prototype
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/asmc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/isa/asmc.c b/sys/dev/isa/asmc.c
index 1315f98a080..92bcab54f14 100644
--- a/sys/dev/isa/asmc.c
+++ b/sys/dev/isa/asmc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asmc.c,v 1.14 2015/12/11 20:06:48 jung Exp $ */
+/* $OpenBSD: asmc.c,v 1.15 2015/12/11 20:15:50 jung Exp $ */
/*
* Copyright (c) 2015 Joerg Jung <jung@openbsd.org>
*
@@ -79,7 +79,6 @@ struct asmc_softc {
struct sensor_task *sc_sensor_task;
};
-uint8_t asmc_status(struct asmc_softc *);
int asmc_try(struct asmc_softc *, int, const char *, uint8_t *, uint8_t);
void asmc_kbdled(struct asmc_softc *, uint8_t);
@@ -354,7 +353,7 @@ asmc_detach(struct device *self, int flags)
return 0;
}
-uint8_t
+static uint8_t
asmc_status(struct asmc_softc *sc)
{
return bus_space_read_1(sc->sc_iot, sc->sc_ioh, ASMC_STATUS);