summaryrefslogtreecommitdiff
path: root/sys/dev/ic/mfireg.h
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2006-05-23 00:49:27 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2006-05-23 00:49:27 +0000
commitda86ec3e834f5b88edf6e5599c46e09e421cf45b (patch)
tree84bbb44648f3bff77cdf8f21b72f95a122647e73 /sys/dev/ic/mfireg.h
parentd58d80985a65d01e6c507f2ff5cd4a44b69bd7cc (diff)
Oops mfi in front of struct name, not mdi.
Diffstat (limited to 'sys/dev/ic/mfireg.h')
-rw-r--r--sys/dev/ic/mfireg.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/mfireg.h b/sys/dev/ic/mfireg.h
index ee2e3f3f936..fddbbad7008 100644
--- a/sys/dev/ic/mfireg.h
+++ b/sys/dev/ic/mfireg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mfireg.h,v 1.18 2006/05/23 00:43:57 marco Exp $ */
+/* $OpenBSD: mfireg.h,v 1.19 2006/05/23 00:49:26 marco Exp $ */
/*
* Copyright (c) 2006 Marco Peereboom <marco@peereboom.us>
*
@@ -771,7 +771,7 @@ struct mfi_ld_details {
} __packed;
/* physical disk info from MR_DCMD_PD_GET_LIST */
-struct mdi_pd_address {
+struct mfi_pd_address {
uint16_t mpa_pd_id;
uint16_t mpa_enc_id;
uint8_t mpa_enc_index;
@@ -784,6 +784,6 @@ struct mdi_pd_address {
struct mfi_pd_list {
uint32_t mpl_size;
uint32_t mpl_no_pd;
- struct mdi_pd_address mpl_address[1];
+ struct mfi_pd_address mpl_address[1];
} __packed;
-#define MFI_PD_LIST_SIZE (256 * sizeof(struct mdi_pd_address) + 8)
+#define MFI_PD_LIST_SIZE (256 * sizeof(struct mfi_pd_address) + 8)