summaryrefslogtreecommitdiff
path: root/sys/dev/atapi/atapi.h
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-08-06 22:41:03 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-08-06 22:41:03 +0000
commit077b42684177a1c282f302d60e4d274466092d54 (patch)
treec592a7cd611e1d0f3b71c9127467f04348202265 /sys/dev/atapi/atapi.h
parent33de205fc642281879119f653507277f32f521dd (diff)
acd.c: Better support for drives that don't set themselves READY at boot;
atapi.h: fix a couple types that I missed.
Diffstat (limited to 'sys/dev/atapi/atapi.h')
-rw-r--r--sys/dev/atapi/atapi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/atapi/atapi.h b/sys/dev/atapi/atapi.h
index 6ca00f1734e..e565e1a54f3 100644
--- a/sys/dev/atapi/atapi.h
+++ b/sys/dev/atapi/atapi.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: atapi.h,v 1.4 1996/07/22 03:35:42 downsj Exp $ */
+/* $OpenBSD: atapi.h,v 1.5 1996/08/06 22:41:02 downsj Exp $ */
/*
* Copyright (c) 1996 Manuel Bouyer. All rights reserved.
@@ -91,8 +91,8 @@ struct atapi_read_cd_capacity {
* Volume size info.
*/
struct atapi_read_cd_capacity_data {
- u_long size; /* Volume size in blocks */
- u_long blksize; /* Block size in bytes */
+ u_int32_t size; /* Volume size in blocks */
+ u_int32_t blksize; /* Block size in bytes */
};
/*