summaryrefslogtreecommitdiff
path: root/sys/dev/sdmmc/sdmmcvar.h
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-09 00:39:30 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-09 00:39:30 +0000
commit3bfd3ec0e490a9f9d2750ba043531c2203fe13ac (patch)
treef3a206560e23c5cda37daef6fc4a04aed093af79 /sys/dev/sdmmc/sdmmcvar.h
parent1be024edd8ea4edd5cc5f70874f7abfeabdaac15 (diff)
Kludge around sdmmc(4)'s poor design: replace "struct scsi_link *"
with "struct scsibus_attach_args" in sdmmc_attach_args. ok krw@
Diffstat (limited to 'sys/dev/sdmmc/sdmmcvar.h')
-rw-r--r--sys/dev/sdmmc/sdmmcvar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sdmmc/sdmmcvar.h b/sys/dev/sdmmc/sdmmcvar.h
index 3b59d39fc8a..a3960a09f47 100644
--- a/sys/dev/sdmmc/sdmmcvar.h
+++ b/sys/dev/sdmmc/sdmmcvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sdmmcvar.h,v 1.18 2010/08/24 14:52:23 blambert Exp $ */
+/* $OpenBSD: sdmmcvar.h,v 1.19 2011/07/09 00:39:29 matthew Exp $ */
/*
* Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
@@ -182,7 +182,7 @@ struct sdmmc_softc {
* Attach devices at the sdmmc bus.
*/
struct sdmmc_attach_args {
- struct scsi_link *scsi_link; /* XXX */
+ struct scsibus_attach_args saa; /* XXX */
struct sdmmc_function *sf;
};