summaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap2/mux.c
diff options
context:
space:
mode:
authorGovindraj.R <govindraj.raja@ti.com>2011-06-01 05:58:56 (GMT)
committerTony Lindgren <tony@atomide.com>2011-06-01 07:16:04 (GMT)
commit30ebad9d756a0b2c97c6c4ca6c5e6b799e3b64da (patch)
treef3119d9d84eb191e3d84d2ef1f40ad4c52ebc73e /arch/arm/mach-omap2/mux.c
parent26a510ba12448d3af26951376eae202bee8cdf65 (diff)
downloadlinux-fsl-qoriq-30ebad9d756a0b2c97c6c4ca6c5e6b799e3b64da.tar.xz
OMAP2+: mux: fix compilation warnings
Fix below compilation warnings. arch/arm/mach-omap2/omap_hwmod.c: In function 'omap_hwmod_for_each': arch/arm/mach-omap2/omap_hwmod.c:1631: warning: 'ret' may be used uninitialized in this function arch/arm/mach-omap2/mux.c: In function 'omap_mux_get_gpio': arch/arm/mach-omap2/mux.c:917: warning: 'm' may be used uninitialized in this function Signed-off-by: Govindraj.R <govindraj.raja@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/mux.c')
-rw-r--r--arch/arm/mach-omap2/mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c
index a4ab1e3..b4f9066 100644
--- a/arch/arm/mach-omap2/mux.c
+++ b/arch/arm/mach-omap2/mux.c
@@ -906,7 +906,7 @@ static struct omap_mux *omap_mux_get_by_gpio(
u16 omap_mux_get_gpio(int gpio)
{
struct omap_mux_partition *partition;
- struct omap_mux *m;
+ struct omap_mux *m = NULL;
list_for_each_entry(partition, &mux_partitions, node) {
m = omap_mux_get_by_gpio(partition, gpio);