diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isp/ispvar.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h index 8625b0e..4e2ed9e 100644 --- a/sys/dev/isp/ispvar.h +++ b/sys/dev/isp/ispvar.h @@ -1,4 +1,4 @@ -/* $Id: ispvar.h,v 1.6 1998/04/14 17:51:32 mjacob Exp $ */ +/* $Id: ispvar.h,v 1.1 1998/04/22 17:54:58 mjacob Exp $ */ /* * Soft Definitions for for Qlogic ISP SCSI adapters. * @@ -161,7 +161,10 @@ typedef struct { #define FW_REINIT 0x0006 #define FW_NON_PART 0x0007 -static inline char *fw_statename __P((u_int8_t x)) +static __inline char *fw_statename __P((u_int8_t x)); +static __inline char * +fw_statename(x) + u_int8_t x; { switch(x) { case FW_CONFIG_WAIT: return "Config Wait"; |