diff options
| author | lukem <lukem@NetBSD.org> | 2001-04-30 02:44:53 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2001-04-30 02:44:53 +0000 |
| commit | 9d02aae3a9ff74cbf0b4561ead9aa1d6423ee007 (patch) | |
| tree | db1224b26edaa6cc797ecc80e78eab604923340c /sys/dev | |
| parent | 85772a1cefcfee80161292226b91176181569369 (diff) | |
minor lint
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ld.c | 8 | ||||
| -rw-r--r-- | sys/dev/microcode/aic7xxx/aic7xxx_seq.h | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/sys/dev/ld.c b/sys/dev/ld.c index c4ac4672cc8..21969ec1db8 100644 --- a/sys/dev/ld.c +++ b/sys/dev/ld.c @@ -1,4 +1,4 @@ -/* $NetBSD: ld.c,v 1.7 2001/02/04 17:15:37 ad Exp $ */ +/* $NetBSD: ld.c,v 1.8 2001/04/30 02:46:06 lukem Exp $ */ /*- * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc. @@ -204,6 +204,7 @@ ldenddetach(struct ld_softc *sc) sc->sc_dv.dv_xname); } +/* ARGSUSED */ static void ldshutdown(void *cookie) { @@ -219,6 +220,7 @@ ldshutdown(void *cookie) } } +/* ARGSUSED */ int ldopen(dev_t dev, int flags, int fmt, struct proc *p) { @@ -259,6 +261,7 @@ ldopen(dev_t dev, int flags, int fmt, struct proc *p) return (0); } +/* ARGSUSED */ int ldclose(dev_t dev, int flags, int fmt, struct proc *p) { @@ -290,6 +293,7 @@ ldclose(dev_t dev, int flags, int fmt, struct proc *p) return (0); } +/* ARGSUSED */ int ldread(dev_t dev, struct uio *uio, int ioflag) { @@ -297,6 +301,7 @@ ldread(dev_t dev, struct uio *uio, int ioflag) return (physio(ldstrategy, NULL, dev, B_READ, ldminphys, uio)); } +/* ARGSUSED */ int ldwrite(dev_t dev, struct uio *uio, int ioflag) { @@ -304,6 +309,7 @@ ldwrite(dev_t dev, struct uio *uio, int ioflag) return (physio(ldstrategy, NULL, dev, B_WRITE, ldminphys, uio)); } +/* ARGSUSED */ int ldioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct proc *p) { diff --git a/sys/dev/microcode/aic7xxx/aic7xxx_seq.h b/sys/dev/microcode/aic7xxx/aic7xxx_seq.h index 02df00b1710..cbcd717851f 100644 --- a/sys/dev/microcode/aic7xxx/aic7xxx_seq.h +++ b/sys/dev/microcode/aic7xxx/aic7xxx_seq.h @@ -856,6 +856,7 @@ ahc_patch1_func(struct ahc_softc *ahc) static int ahc_patch0_func(struct ahc_softc *ahc); +/* ARGSUSED */ static int ahc_patch0_func(struct ahc_softc *ahc) { |
