diff options
author | Matt Jacob <mjacob@FreeBSD.org> | 2002-02-04 21:04:25 +0000 |
---|---|---|
committer | Matt Jacob <mjacob@FreeBSD.org> | 2002-02-04 21:04:25 +0000 |
commit | 75c1e828c0f407d62605ba6ba40c542ecac4d2c5 (patch) | |
tree | 6bc5ce3afd87000d0d3bd51b3708bd7ccb43fbc6 /sys/dev/isp/isp_ioctl.h | |
parent | 3fd18735a4975d99908822d60291f410de46aaf6 (diff) |
Notes
Diffstat (limited to 'sys/dev/isp/isp_ioctl.h')
-rw-r--r-- | sys/dev/isp/isp_ioctl.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/isp/isp_ioctl.h b/sys/dev/isp/isp_ioctl.h index b52b2b538fbb7..61f921b8c8bf0 100644 --- a/sys/dev/isp/isp_ioctl.h +++ b/sys/dev/isp/isp_ioctl.h @@ -79,11 +79,11 @@ struct isp_fc_device { */ #define ISP_STATS_VERSION 0 typedef struct { - uint8_t isp_stat_version; - uint8_t isp_type; /* (ro) reflects chip type */ - uint8_t isp_revision; /* (ro) reflects chip version */ - uint8_t unused1; - uint32_t unused2; + u_int8_t isp_stat_version; + u_int8_t isp_type; /* (ro) reflects chip type */ + u_int8_t isp_revision; /* (ro) reflects chip version */ + u_int8_t unused1; + u_int32_t unused2; /* * Statistics Counters */ @@ -96,7 +96,7 @@ typedef struct { #define ISP_FPHCCMCPLT 5 #define ISP_RSCCHIWAT 6 #define ISP_FPCCHIWAT 7 - uint64_t isp_stats[ISP_NSTATS]; + u_int64_t isp_stats[ISP_NSTATS]; } isp_stats_t; #define ISP_GET_STATS _IOR(ISP_IOC, 6, isp_stats_t) |