diff options
Diffstat (limited to 'sys/dev/sdmmc/sdhcvar.h')
-rw-r--r-- | sys/dev/sdmmc/sdhcvar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/sdmmc/sdhcvar.h b/sys/dev/sdmmc/sdhcvar.h index f129f2fdb16..be883e395e5 100644 --- a/sys/dev/sdmmc/sdhcvar.h +++ b/sys/dev/sdmmc/sdhcvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sdhcvar.h,v 1.2 2006/07/17 20:48:27 fgsch Exp $ */ +/* $OpenBSD: sdhcvar.h,v 1.3 2007/09/06 08:01:01 jsg Exp $ */ /* * Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org> @@ -27,6 +27,7 @@ struct sdhc_softc { struct device sc_dev; struct sdhc_host **sc_host; int sc_nhosts; + u_int sc_flags; }; /* Host controller functions called by the attachment driver. */ @@ -36,4 +37,7 @@ void sdhc_power(int, void *); void sdhc_shutdown(void *); int sdhc_intr(void *); +/* flag values */ +#define SDHC_F_NOPWR0 (1 << 0) + #endif |