From: Todd Poynor Date: Thu, 3 Nov 2005 23:49:40 +0000 (-0800) Subject: [PATCH] ARM: OMAP: LOW_PWR pin mux only on 1610 X-Git-Tag: v2.6.15-omap2~109 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=2d5702399964ae0367a62507b7d8fd02a163190b;p=linux-2.6-omap-h63xx.git [PATCH] ARM: OMAP: LOW_PWR pin mux only on 1610 1610-only LOW_PWR pin muxing only on 1610 Signed-off-by: Todd Poynor Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/plat-omap/pm.c b/arch/arm/plat-omap/pm.c index 22d8dd358d9..f646e99a872 100644 --- a/arch/arm/plat-omap/pm.c +++ b/arch/arm/plat-omap/pm.c @@ -663,8 +663,10 @@ static int __init omap_pm_init(void) omap_pm_init_proc(); #endif - /* configure LOW_PWR pin */ - omap_cfg_reg(T20_1610_LOW_PWR); + if (cpu_is_omap16xx()) { + /* configure LOW_PWR pin */ + omap_cfg_reg(T20_1610_LOW_PWR); + } return 0; }