summaryrefslogtreecommitdiffstats
path: root/sys/isa/fdc.h
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-07-11 06:35:39 +0000
committerbde <bde@FreeBSD.org>1998-07-11 06:35:39 +0000
commit065e3edb4989d6adb56bfc42cab8726f680cef5b (patch)
treec5eb214b570ae3cccae7a9958db22dbfe9d5954f /sys/isa/fdc.h
parenta4b7c7a6b332ba36b7bbd82b88b16274e82447f0 (diff)
downloadFreeBSD-src-065e3edb4989d6adb56bfc42cab8726f680cef5b.zip
FreeBSD-src-065e3edb4989d6adb56bfc42cab8726f680cef5b.tar.gz
Don't pretend to support ix86's with 7-bit ints by using longs just to
ensure 8-bit variables. Doing so mainly bogotified some printf formats.
Diffstat (limited to 'sys/isa/fdc.h')
-rw-r--r--sys/isa/fdc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isa/fdc.h b/sys/isa/fdc.h
index 34d7011..8524123 100644
--- a/sys/isa/fdc.h
+++ b/sys/isa/fdc.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
- * $Id: fdc.h,v 1.8 1997/02/22 09:36:10 peter Exp $
+ * $Id: fdc.h,v 1.9 1997/09/17 20:16:16 tegge Exp $
*
*/
@@ -60,7 +60,7 @@ struct fdc_data
int state;
int retry;
int fdout; /* mirror of the w/o digital output reg */
- u_long status[7]; /* copy of the registers */
+ u_int status[7]; /* copy of the registers */
enum fdc_type fdct; /* chip version of FDC */
int fdc_errs; /* number of logged errors */
struct buf_queue_head head; /* Head of buf chain */
OpenPOWER on IntegriCloud