From patchwork Thu May 21 13:06:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 6454781 X-Patchwork-Delegate: geert@linux-m68k.org Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 121E6C0432 for ; Thu, 21 May 2015 13:06:17 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7704620457 for ; Thu, 21 May 2015 13:06:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B977F2045B for ; Thu, 21 May 2015 13:06:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753908AbbEUNGL (ORCPT ); Thu, 21 May 2015 09:06:11 -0400 Received: from mail-ob0-f181.google.com ([209.85.214.181]:36701 "EHLO mail-ob0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753081AbbEUNGK (ORCPT ); Thu, 21 May 2015 09:06:10 -0400 Received: by obbea2 with SMTP id ea2so25093256obb.3 for ; Thu, 21 May 2015 06:06:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=jS9Qqj1Od/Bc5R7KlrByVwTdPqDo7WkYwe8gPR9SuVM=; b=YF4q9zBGgLCeHBaHRAHOnzcDE1Jyhpwfaiz4PchstKluc/3OD+3ZZ5XPVfBd6371EP RRhd/mayxw9dXb5kHX6CVYpLfNDvdh3voVSK92o2GnEo+aV6F6NDLvZgvZxHACcGbUFy xUB9PMcw3v5e8/sa6PFUgxcibbiIThH5eaGrmAAgQhqc6vwgPrbuOkeTAzxyGYsy1gXp ataOG57Cxg2SFAjIqpXwGdAekyz15yuHSPiy9ZKiA+eFVbb3N2qiuaMN++w53FM+MmnO mbmNWOmPkBSadym5nBMIp52lZWY0tuYH+Z7CsidHUZbA3TgckGGtx0tvdd65TRBFJooE /Lmg== MIME-Version: 1.0 X-Received: by 10.182.24.97 with SMTP id t1mr2264593obf.32.1432213569696; Thu, 21 May 2015 06:06:09 -0700 (PDT) Received: by 10.60.103.171 with HTTP; Thu, 21 May 2015 06:06:09 -0700 (PDT) Date: Thu, 21 May 2015 15:06:09 +0200 X-Google-Sender-Auth: SZL_lFDwcIusdaoaro7DAkARtPE Message-ID: Subject: Renesas R-Car M2 Porter board? (was: [PATCH v3 11/11] ARM: shmobile: gose: enable R-Car Gen2 regulator quirk) From: Geert Uytterhoeven To: Linux-sh list Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Does anyone have a Renesas R-Car M2 Porter board? I think it's also affected, as it has both da9063/da9210. Thanks! ---------- Forwarded message ---------- From: Ulrich Hecht Date: Thu, May 21, 2015 at 12:48 PM Subject: [PATCH v3 11/11] ARM: shmobile: gose: enable R-Car Gen2 regulator quirk To: geert@linux-m68k.org, horms@verge.net.au, linux-sh@vger.kernel.org, laurent.pinchart+renesas@ideasonboard.com, kuninori.morimoto.gx@renesas.com Cc: magnus.damm@gmail.com, Ulrich Hecht Regulator setup seems identical to Koelsch. Signed-off-by: Ulrich Hecht --- arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 2.3.5 -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c b/arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c index 384e6e9..62437b5 100644 --- a/arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c +++ b/arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c @@ -123,7 +123,8 @@ static int __init rcar_gen2_regulator_quirk(void) u32 mon; if (!of_machine_is_compatible("renesas,koelsch") && - !of_machine_is_compatible("renesas,lager")) + !of_machine_is_compatible("renesas,lager") && + !of_machine_is_compatible("renesas,gose")) return -ENODEV; irqc = ioremap(IRQC_BASE, PAGE_SIZE);