From patchwork Thu Sep 17 06:33:58 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 7202671 X-Patchwork-Delegate: horms@verge.net.au Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 618639F380 for ; Thu, 17 Sep 2015 06:34:03 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9D24D208C9 for ; Thu, 17 Sep 2015 06:34:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C74A12081F for ; Thu, 17 Sep 2015 06:34:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753638AbbIQGeA (ORCPT ); Thu, 17 Sep 2015 02:34:00 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:35027 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753630AbbIQGd7 (ORCPT ); Thu, 17 Sep 2015 02:33:59 -0400 Received: by pacfv12 with SMTP id fv12so11779364pac.2; Wed, 16 Sep 2015 23:33:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=kA5iy7QYYP9/ReAaB29b04oPNV2VKhgjRv9KMP7+gQ4=; b=w/SiAa2mOFuTiXb349EVAKVQTL8zjRY0FoCqIMeXcaadsTBiiiiiKSXmgZrZrsKJ4t b+48NlRotYuuQiNWlhbDBpME5VCd7xUOzGS7mG7U0o7XVUd1FpMlClnRD1rJpk0bUVGB QiXLcZJPMUQzWDVxbChJxPkbhQyBfn5gZuXvikLPLG0J5lfth9v9dXGRuBDdHe20p/IY dDyQ49ey6UyyER+hDEMPVytNzY1tnnnQkWAKe9k9xTpsbbcza1db0bF1yIH5Vbv75oMz YXb3a1yJxJHlbTN4ziNpSFcJISyZ9h6i0xEBu63RcSbUjTONrLHUnDYgvwRHOyGTDZEN 1oMw== X-Received: by 10.66.175.7 with SMTP id bw7mr70662956pac.155.1442471639527; Wed, 16 Sep 2015 23:33:59 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by smtp.gmail.com with ESMTPSA id w5sm1672665pbs.31.2015.09.16.23.33.56 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 16 Sep 2015 23:33:58 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: mark.rutland@arm.com, devicetree@vger.kernel.org, lorenzo.pieralisi@arm.com, keita.kobayashi.ym@renesas.com, horms@verge.net.au, geert@linux-m68k.org, laurent.pinchart@ideasonboard.com, Magnus Damm Date: Thu, 17 Sep 2015 15:33:58 +0900 Message-Id: <20150917063358.26016.8326.sendpatchset@little-apple> In-Reply-To: <20150917063240.26016.93772.sendpatchset@little-apple> References: <20150917063240.26016.93772.sendpatchset@little-apple> Subject: [PATCH v3 08/09] ARM: shmobile: Prioritize r8a7790 DT APMU support 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_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, 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 From: Magnus Damm Adjust the r8a7790 SoC support code to not configure any non-DT SMP code in case the DT-based enable-method has been installed already. Signed-off-by: Magnus Damm --- Changes since V2: - None Changes since V1: - New patch. arch/arm/mach-shmobile/setup-r8a7790.c | 1 + 1 file changed, 1 insertion(+) -- 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 --- 0001/arch/arm/mach-shmobile/setup-r8a7790.c +++ work/arch/arm/mach-shmobile/setup-r8a7790.c 2015-08-23 15:44:29.102366518 +0900 @@ -28,6 +28,7 @@ static const char * const r8a7790_boards }; DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)") + .smp_init = shmobile_smp_init_fallback_ops, .smp = smp_ops(r8a7790_smp_ops), .init_early = shmobile_init_delay, .init_time = rcar_gen2_timer_init,