summaryrefslogtreecommitdiff
path: root/sys/dev/usb/uberry.c
diff options
context:
space:
mode:
authorMarc Balmer <mbalmer@cvs.openbsd.org>2007-06-05 08:43:57 +0000
committerMarc Balmer <mbalmer@cvs.openbsd.org>2007-06-05 08:43:57 +0000
commit440c92fbdde0969f281d9daf32cbafdb1b057de9 (patch)
treec79c753268946bdc81f4af8df3e6d8695c7fb7ac /sys/dev/usb/uberry.c
parent3033997e9c562ce3ee8b9bb55e4ecc77e6b90a56 (diff)
Remove the "Static" declaration of many functions. It was defined to be empty
and it was not consistently used. It was confusing as it suggested these functions were static, which they were not. discussed with dlg and jsg, ok jsg.
Diffstat (limited to 'sys/dev/usb/uberry.c')
-rw-r--r--sys/dev/usb/uberry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uberry.c b/sys/dev/usb/uberry.c
index f6a3616c6b9..1dc73c323f6 100644
--- a/sys/dev/usb/uberry.c
+++ b/sys/dev/usb/uberry.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uberry.c,v 1.4 2007/05/27 04:00:25 jsg Exp $ */
+/* $OpenBSD: uberry.c,v 1.5 2007/06/05 08:43:55 mbalmer Exp $ */
/*-
* Copyright (c) 2006 Theo de Raadt <deraadt@openbsd.org>
@@ -45,7 +45,7 @@ struct uberry_softc {
#define UBERRY_CONFIG_NO 0
-Static struct usb_devno const uberry_devices[] = {
+struct usb_devno const uberry_devices[] = {
{ USB_VENDOR_RIM, USB_PRODUCT_RIM_BLACKBERRY }
};
@@ -99,7 +99,7 @@ uberry_detach(struct device *self, int flags)
return 0;
}
-Static int
+int
uberry_activate(device_ptr_t self, enum devact act)
{
switch (act) {