PERFORCE change 107142 for review
Warner Losh
imp at FreeBSD.org
Mon Oct 2 22:57:25 PDT 2006
http://perforce.freebsd.org/chv.cgi?CH=107142
Change 107142 by imp at imp_lighthouse on 2006/10/03 05:56:59
Add MMC_DATA_MULTI
Affected files ...
.. //depot/projects/arm/src/sys/dev/mmc/mmcreg.h#12 edit
Differences ...
==== //depot/projects/arm/src/sys/dev/mmc/mmcreg.h#12 (text+ko) ====
@@ -124,11 +124,13 @@
struct mmc_data {
size_t len; /* size of the data */
+ size_t xfer_len;
void *data; /* data buffer */
uint32_t flags;
-#define MMC_DATA_WRITE (1UL << 8)
-#define MMC_DATA_READ (1UL << 9)
-#define MMC_DATA_STREAM (1UL << 10)
+#define MMC_DATA_WRITE (1UL << 0)
+#define MMC_DATA_READ (1UL << 1)
+#define MMC_DATA_STREAM (1UL << 2)
+#define MMC_DATA_MULTI (1UL << 3)
struct mmc_request *mrq;
};
More information about the p4-projects
mailing list