aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/mux.h
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2011-03-11 11:32:26 -0800
committerTony Lindgren <tony@atomide.com>2011-03-11 11:32:26 -0800
commit8aee6039465c9887af6a4babfa5b52f8bc96b43d (patch)
tree39eaed372f3d4a00061a648c47cde101675d7461 /arch/arm/mach-omap2/mux.h
parentomap2+: mux: Remove the use of IDLE flag (diff)
downloadlinux-dev-8aee6039465c9887af6a4babfa5b52f8bc96b43d.tar.xz
linux-dev-8aee6039465c9887af6a4babfa5b52f8bc96b43d.zip
omap2+: mux: Add macro for configuring static with omap_hwmod_mux_init
Add macro for defining static pins in the board file. We can now start implementing pin multiplexing in the platform init code for devices that call omap_hwmod_mux_init. Currently that is only implemented for serial.c. Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/mux.h')
-rw-r--r--arch/arm/mach-omap2/mux.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/mux.h b/arch/arm/mach-omap2/mux.h
index 8920fa4775ac..137f321c029f 100644
--- a/arch/arm/mach-omap2/mux.h
+++ b/arch/arm/mach-omap2/mux.h
@@ -186,6 +186,12 @@ struct omap_device_pad {
struct omap_hwmod_mux_info;
+#define OMAP_MUX_STATIC(signal, mode) \
+{ \
+ .name = (signal), \
+ .enable = (mode), \
+}
+
#if defined(CONFIG_OMAP_MUX)
/**