diff options
author | Tony Lindgren <tony@atomide.com> | 2019-03-21 19:00:21 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2019-03-26 19:26:26 +0100 |
commit | 8b30919a4e3c7aba32dd72e8208147a6496cb16c (patch) | |
tree | 83ed5f84355452710524b9f6d81f1fb058d0876e /arch/arm/mach-omap2/mmc.h | |
parent | ARM: OMAP2+: Remove hwmod .rev data and use local SoC checks instead (diff) | |
download | linux-8b30919a4e3c7aba32dd72e8208147a6496cb16c.tar.xz linux-8b30919a4e3c7aba32dd72e8208147a6496cb16c.zip |
ARM: OMAP2+: Handle reset quirks for dynamically allocated modules
For dynamically allocated struct omap_hwmod data, we need to populate
the device IP specific reset quirks.
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/mmc.h')
-rw-r--r-- | arch/arm/mach-omap2/mmc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/mmc.h b/arch/arm/mach-omap2/mmc.h index 9145a6f720fc..7f4e053c3434 100644 --- a/arch/arm/mach-omap2/mmc.h +++ b/arch/arm/mach-omap2/mmc.h @@ -7,7 +7,15 @@ #define OMAP4_MMC_REG_OFFSET 0x100 struct omap_hwmod; + +#ifdef CONFIG_SOC_OMAP2420 int omap_msdi_reset(struct omap_hwmod *oh); +#else +static inline int omap_msdi_reset(struct omap_hwmod *oh) +{ + return 0; +} +#endif /* called from board-specific card detection service routine */ extern void omap_mmc_notify_cover_event(struct device *dev, int slot, |