diff options
| author | Jaehoon Chung <jh80.chung@samsung.com> | 2013-01-29 22:58:16 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-04-17 10:58:51 -0400 | 
| commit | 1741c64d642a95c4bb88a2b03e96c6dc7ed5fe62 (patch) | |
| tree | 84daf0f060365e85b80862436ba4488f93470bd4 /include/mmc.h | |
| parent | 64f4a6192f0670de2d9af98900b750a3e7bf8ce6 (diff) | |
| download | olio-uboot-2014.01-1741c64d642a95c4bb88a2b03e96c6dc7ed5fe62.tar.xz olio-uboot-2014.01-1741c64d642a95c4bb88a2b03e96c6dc7ed5fe62.zip | |
mmc: check the revision for sd3.0
Support to check whether the SD3.0 or not.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Tested-by: Rommel Custodio <sessyargc@gmail.com>
Diffstat (limited to 'include/mmc.h')
| -rw-r--r-- | include/mmc.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/mmc.h b/include/mmc.h index d5b3a9ea3..f0d482062 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -30,6 +30,7 @@  #include <linux/compiler.h>  #define SD_VERSION_SD	0x20000 +#define SD_VERSION_3	(SD_VERSION_SD | 0x300)  #define SD_VERSION_2	(SD_VERSION_SD | 0x200)  #define SD_VERSION_1_0	(SD_VERSION_SD | 0x100)  #define SD_VERSION_1_10	(SD_VERSION_SD | 0x10a) |