* Tony Lindgren <tony@xxxxxxxxxxx> [190325 18:38]: > For dynamically allocated struct omap_hwmod data, we need to populate > the device IP specific reset quirks. ... > +static const struct omap_hwmod_reset omap24xx_reset_quirks[] = { > + { .match = "msdi", .len = 3, .reset = omap_msdi_reset, }, > +}; This patch needs the following fix for omap_msdi_reset() if 24xx is not selected. Regards, Tony 8< --------------- diff --git a/arch/arm/mach-omap2/mmc.h b/arch/arm/mach-omap2/mmc.h --- 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,