diff options
| author | pooka <pooka@NetBSD.org> | 2002-10-08 16:13:36 +0000 |
|---|---|---|
| committer | pooka <pooka@NetBSD.org> | 2002-10-08 16:13:36 +0000 |
| commit | 164c4e3becd286bbd71a48c67513827ced1710eb (patch) | |
| tree | ec5993059549465e2d233bde3849e1c611259ac8 /sys/dev | |
| parent | 16c5b1b5a82551be05ddf3f4a9e4821de47edbe9 (diff) | |
ubsa_activate() is prototyped unconditionally as non-static,
reflect that here.
Fixes compilation on non-DEBUG kernels.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/ubsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ubsa.c b/sys/dev/usb/ubsa.c index b4db8a7cdc4..7a27ffc2c32 100644 --- a/sys/dev/usb/ubsa.c +++ b/sys/dev/usb/ubsa.c @@ -1,4 +1,4 @@ -/* $NetBSD: ubsa.c,v 1.1 2002/10/08 13:08:02 augustss Exp $ */ +/* $NetBSD: ubsa.c,v 1.2 2002/10/08 16:13:36 pooka Exp $ */ /*- * Copyright (c) 2002, Alexander Kabaev <kan.FreeBSD.org>. * All rights reserved. @@ -409,7 +409,7 @@ USB_DETACH(ubsa) return (rv); } -Static int +int ubsa_activate(device_ptr_t self, enum devact act) { struct ubsa_softc *sc = (struct ubsa_softc *)self; |
