From patchwork Sun Aug 23 07:25:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 7056921 X-Patchwork-Delegate: horms@verge.net.au 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 6A08DC05AC for ; Sun, 23 Aug 2015 07:21:32 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6C7BF206FA for ; Sun, 23 Aug 2015 07:21:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 71F2A206F6 for ; Sun, 23 Aug 2015 07:21:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751269AbbHWHVa (ORCPT ); Sun, 23 Aug 2015 03:21:30 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:34861 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750905AbbHWHV3 (ORCPT ); Sun, 23 Aug 2015 03:21:29 -0400 Received: by pacdd16 with SMTP id dd16so73346682pac.2; Sun, 23 Aug 2015 00:21:29 -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=iuVawqGreIt5rbhOafWtMPm7eV3IK/9Larf22xA0ywg=; b=KDkPC1HAWpTRWZUWMZ+G9ttiJQ1GcEvCgtIQdUrNq29JxuXDQ84eB+6INR2YGlPf5V H+7ZabKpPgHoxVn6nU3aikIxCWQbKsdCgjcp5tq/4TmqY6n7WiAXEGt72DQvi/AI+Rk1 c5aC5tT5UjI1RqV1VUIxgKSt9azg/MqZP7z39VaNmbPEIaGfQJYQFEIw3icO0GIzl8IY AANK4S73nIywor71MG4f9KvxVTZY7Mw97qIVq4WSw8ykW/pyNL/OeSd2sW1YTg958jrR gCbpHhBhN7dpKemGw2B7J/vOkjlSQRJgVH0PuOGxQ3QHv6bTPw8KqtJksfqVBJm8FMvh v8sQ== X-Received: by 10.66.241.130 with SMTP id wi2mr33859089pac.130.1440314489219; Sun, 23 Aug 2015 00:21:29 -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 kr1sm13086745pbc.93.2015.08.23.00.21.25 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 23 Aug 2015 00:21:27 -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: Sun, 23 Aug 2015 16:25:32 +0900 Message-Id: <20150823072532.14156.88588.sendpatchset@little-apple> In-Reply-To: <20150823072427.14156.1960.sendpatchset@little-apple> References: <20150823072427.14156.1960.sendpatchset@little-apple> Subject: [PATCH v2 06/07] 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=-8.0 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 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,