From patchwork Mon Nov 5 23:49:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 1702141 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id BBE5F3FCA5 for ; Mon, 5 Nov 2012 23:51:08 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TVWPw-0007UB-1V; Mon, 05 Nov 2012 23:49:20 +0000 Received: from mail-pa0-f49.google.com ([209.85.220.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TVWPs-0007Ts-VH for linux-arm-kernel@lists.infradead.org; Mon, 05 Nov 2012 23:49:17 +0000 Received: by mail-pa0-f49.google.com with SMTP id bi5so3973966pad.36 for ; Mon, 05 Nov 2012 15:49:13 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=TjhsVgr6XCORlEU5KqOqTgKiimNFBn4cxuZjM+vya2M=; b=Rfw3kNrkZpVBZizW8GRzDcw2FkJR6igFmjoV/huVAgQID44KjGoOmR91DENznhE+lZ 8B2qoBMhuyUrT3E5xtbAIu+Y+In5GXyIDtFMY7AwZ2+NfAyE9o4hSgfzXD6V8acm7iZj nmkbtmz6E8apPEQmVhIeL65dBMT5cJC19qYxwVqkEHb739/F4y6b1PwHGau5jf43CIYP jgu1CXLh6hsURsKyyM1b16C122wp6znbjHJkP7LHWErl8/wgTY0yvAGsjluE+xYKKe3N 1wCDynDPYmkfW00w9vREvqgli+IlOrUSmaE+KSDkuLJw9QKTeCunys4E/OzwWUUMxuJK H8hQ== Received: by 10.68.253.4 with SMTP id zw4mr34994245pbc.143.1352159353643; Mon, 05 Nov 2012 15:49:13 -0800 (PST) Received: from localhost (c-24-19-7-36.hsd1.wa.comcast.net. [24.19.7.36]) by mx.google.com with ESMTPS id mt15sm11270022pbc.49.2012.11.05.15.49.12 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 05 Nov 2012 15:49:12 -0800 (PST) From: Kevin Hilman To: Tony Lindgren , linux-omap@vger.kernel.org Subject: [PATCH] ARM: OMAP4: PM: fix regulator name for VDD_MPU Date: Mon, 5 Nov 2012 15:49:11 -0800 Message-Id: <1352159351-15380-1-git-send-email-khilman@deeprootsystems.com> X-Mailer: git-send-email 1.8.0 X-Gm-Message-State: ALoCoQkI9l1WxNTH55Cy+K079yChxKi6Llr4OHcU/74H6AKKQLxuXbW4/NfpoRHVwUm2zLVl4OoL X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20121105_184917_165468_57896F54 X-CRM114-Status: GOOD ( 11.13 ) X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.220.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Kevin Hilman commit 24d7b40a (ARM: OMAP2+: PM: MPU DVFS: use generic CPU device for MPU-SS) updated the regulator name used for the MPU regulator, but only updated OMAP3, not OMAP4. Fix the OMAP4 name as well, otherwise CPUfreq fails to find the MPU regulator. Signed-off-by: Kevin Hilman --- Applies to v3.7-rc4 arch/arm/mach-omap2/twl-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c index 635e109..44c4205 100644 --- a/arch/arm/mach-omap2/twl-common.c +++ b/arch/arm/mach-omap2/twl-common.c @@ -366,7 +366,7 @@ static struct regulator_init_data omap4_clk32kg_idata = { }; static struct regulator_consumer_supply omap4_vdd1_supply[] = { - REGULATOR_SUPPLY("vcc", "mpu.0"), + REGULATOR_SUPPLY("vcc", "cpu0"), }; static struct regulator_consumer_supply omap4_vdd2_supply[] = {