diff options
author | phk <phk@FreeBSD.org> | 1999-08-28 19:44:07 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-08-28 19:44:07 +0000 |
commit | ad3452e25a53916a9628057b298e23373232d538 (patch) | |
tree | 2bc479bc29184c1388ee2f075a83d64f7ab0c5eb /sys/dev/ida | |
parent | f6c7768ee995f37030781425a73e8d7494e5f01b (diff) | |
download | FreeBSD-src-ad3452e25a53916a9628057b298e23373232d538.zip FreeBSD-src-ad3452e25a53916a9628057b298e23373232d538.tar.gz |
Fix various trivial warnings from LINT
Diffstat (limited to 'sys/dev/ida')
-rw-r--r-- | sys/dev/ida/ida.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ida/ida.c b/sys/dev/ida/ida.c index 509d046..0209203 100644 --- a/sys/dev/ida/ida.c +++ b/sys/dev/ida/ida.c @@ -72,6 +72,7 @@ static void ida_alloc_qcb(struct ida_softc *ida); static void ida_construct_qcb(struct ida_softc *ida); static void ida_start(struct ida_softc *ida); static void ida_done(struct ida_softc *ida, struct ida_qcb *qcb); +static void ida_wait(struct ida_softc *ida, struct ida_qcb *qcb, int delay); void ida_free(struct ida_softc *ida) @@ -416,6 +417,7 @@ ida_start(struct ida_softc *ida) } } +static void ida_wait(struct ida_softc *ida, struct ida_qcb *qcb, int delay) { |