diff options
author | mav <mav@FreeBSD.org> | 2008-10-08 17:35:41 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2008-10-08 17:35:41 +0000 |
commit | a13e6527d9b011fa8f68ff1bb023e518a7bb8a04 (patch) | |
tree | f37866caca06a821674c6f64c008b1efe1320030 /sys/dev/mmc/mmcvar.h | |
parent | de0736bbe14f2e99eb99a07f3de2a9ced726d24b (diff) | |
download | FreeBSD-src-a13e6527d9b011fa8f68ff1bb023e518a7bb8a04.zip FreeBSD-src-a13e6527d9b011fa8f68ff1bb023e518a7bb8a04.tar.gz |
Set of mmc layer improvements:
- add MMC support.
- add SDHC support.
- add 4 and 8 bit bus width support.
- add High Speed bus timing support.
Diffstat (limited to 'sys/dev/mmc/mmcvar.h')
-rw-r--r-- | sys/dev/mmc/mmcvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/mmc/mmcvar.h b/sys/dev/mmc/mmcvar.h index 971add1..f5a1009 100644 --- a/sys/dev/mmc/mmcvar.h +++ b/sys/dev/mmc/mmcvar.h @@ -62,6 +62,7 @@ enum mmc_device_ivars { MMC_IVAR_SECTOR_SIZE, MMC_IVAR_TRAN_SPEED, MMC_IVAR_READ_ONLY, + MMC_IVAR_HIGH_CAP, // MMC_IVAR_, }; @@ -77,5 +78,6 @@ MMC_ACCESSOR(rca, RCA, int) MMC_ACCESSOR(sector_size, SECTOR_SIZE, int) MMC_ACCESSOR(tran_speed, TRAN_SPEED, int) MMC_ACCESSOR(read_only, READ_ONLY, int) +MMC_ACCESSOR(high_cap, HIGH_CAP, int) #endif /* DEV_MMC_MMCVAR_H */ |