From: Mugunthan V N Date: Mon, 28 Sep 2015 07:26:28 +0000 (+0530) Subject: omap_hsmmc: update struct hsmmc to accomodate base address from DT X-Git-Tag: v2016.01-rc1~245 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=11e1582506c615cc444e9ba8f34e877386aa4f45;p=platform%2Fkernel%2Fu-boot.git omap_hsmmc: update struct hsmmc to accomodate base address from DT Existing driver gets the actual omap hammc base address + 0x100 bytes as the first 0x100 bytes is not used by the driver. But with DM conversion the base address from DT is different, to accommodate the offset adding res0[0x100] to struct hsmmc. Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- diff --git a/arch/arm/include/asm/omap_mmc.h b/arch/arm/include/asm/omap_mmc.h index 617e22f..b69d073 100644 --- a/arch/arm/include/asm/omap_mmc.h +++ b/arch/arm/include/asm/omap_mmc.h @@ -26,6 +26,9 @@ #define OMAP_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 */