From 164c4e3becd286bbd71a48c67513827ced1710eb Mon Sep 17 00:00:00 2001 From: pooka Date: Tue, 8 Oct 2002 16:13:36 +0000 Subject: [PATCH] ubsa_activate() is prototyped unconditionally as non-static, reflect that here. Fixes compilation on non-DEBUG kernels. --- sys/dev/usb/ubsa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/ubsa.c b/sys/dev/usb/ubsa.c index b4db8a7cdc4c..7a27ffc2c320 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 . * 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;