From 8d3dd017ad2faaa356ad0ab655829ff0a2fe3e72 Mon Sep 17 00:00:00 2001 From: Josef Karthauser Date: Sat, 6 Apr 2002 21:46:47 +0000 Subject: [PATCH] Define away 'Static' when compiling with USB_DEBUG defined, to make it easier to debug. --- sys/dev/usb/usb_port.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 0737d945537..b6a3591e506 100644 --- a/sys/dev/usb/usb_port.h +++ b/sys/dev/usb/usb_port.h @@ -62,9 +62,10 @@ #define UHUB_DEBUG 1 #define ULPT_DEBUG 1 #define UAUDIO_DEBUG 1 -#endif - +#define Static +#else #define Static static +#endif typedef struct proc *usb_proc_ptr;