summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-02-26 16:21:47 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-02-26 16:21:47 +0000
commit5b4d37f0f93f1fa8ba7dc486e23ed366fbf9b825 (patch)
tree2eff5557a22198380470497d292663edc3b55833 /sys/dev
parent79cc1d484839c0614610cb6b92b13eece675e068 (diff)
Sigh. unstatic the simplelock to make this compile without LOCKDEBUG.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/cy82c693.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/cy82c693.c b/sys/dev/pci/cy82c693.c
index acab5fdf386..e50bd84b545 100644
--- a/sys/dev/pci/cy82c693.c
+++ b/sys/dev/pci/cy82c693.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cy82c693.c,v 1.3 2001/02/26 15:44:46 art Exp $ */
+/* $OpenBSD: cy82c693.c,v 1.4 2001/02/26 16:21:46 art Exp $ */
/* $NetBSD: cy82c693.c,v 1.1 2000/06/06 03:07:39 thorpej Exp $ */
/*-
@@ -60,7 +60,7 @@
static struct cy82c693_handle cyhc_handle;
static int cyhc_initialized;
-static struct simplelock cyhc_slock = SLOCK_INITIALIZER;
+struct simplelock cyhc_slock = SLOCK_INITIALIZER;
#define CYHC_LOCK(s) \
do { \