diff options
author | Jean-Jacques Hiblot | 2017-09-21 16:51:32 +0200 |
---|---|---|
committer | Tom Rini | 2018-01-18 22:04:21 -0500 |
commit | 741726ae4cc9f75aa59ae7fd49d916a1dad313ff (patch) | |
tree | de95def8c1f1f78fc4c7d76561d249f11d205350 /arch/arm | |
parent | 086ebcd40e9bf8efc520f1b177fd8e3cc0e506fa (diff) |
Revert "omap_hsmmc: update struct hsmmc to accommodate omap3 from DT"
This reverts commit 46831c1a4cda75d92f7ad18d4e2b1eb196c62b2f.
This reserved area at the beginning of struct hsmm, will be used later to
support ADMA
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/omap_mmc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/omap_mmc.h b/arch/arm/include/asm/omap_mmc.h index fd33408622a..297e6a73802 100644 --- a/arch/arm/include/asm/omap_mmc.h +++ b/arch/arm/include/asm/omap_mmc.h @@ -28,6 +28,9 @@ #include <mmc.h> struct hsmmc { +#ifdef CONFIG_DM_MMC + unsigned char res0[0x100]; +#endif unsigned char res1[0x10]; unsigned int sysconfig; /* 0x10 */ unsigned int sysstatus; /* 0x14 */ |