From f9004dbfff8a3fbbd7e2a88c8a4327c7f2f8e5b2 Mon Sep 17 00:00:00 2001
From: hc <hc@nodka.com>
Date: Wed, 31 Jan 2024 01:04:47 +0000
Subject: [PATCH] add driver 5G

---
 kernel/arch/arm/mach-omap2/mmc.h |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/kernel/arch/arm/mach-omap2/mmc.h b/kernel/arch/arm/mach-omap2/mmc.h
index 9145a6f..b5533e9 100644
--- a/kernel/arch/arm/mach-omap2/mmc.h
+++ b/kernel/arch/arm/mach-omap2/mmc.h
@@ -7,8 +7,12 @@
 #define OMAP4_MMC_REG_OFFSET	0x100
 
 struct omap_hwmod;
-int omap_msdi_reset(struct omap_hwmod *oh);
 
-/* called from board-specific card detection service routine */
-extern void omap_mmc_notify_cover_event(struct device *dev, int slot,
-					int is_closed);
+#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

--
Gitblit v1.6.2