From patchwork Sun Aug 23 07:25:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 7056931 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 ED08C9F305 for ; Sun, 23 Aug 2015 07:21:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3B566206FA for ; Sun, 23 Aug 2015 07:21:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3DDAD206F6 for ; Sun, 23 Aug 2015 07:21:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750905AbbHWHVk (ORCPT ); Sun, 23 Aug 2015 03:21:40 -0400 Received: from mail-pd0-f175.google.com ([209.85.192.175]:35489 "EHLO mail-pd0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751294AbbHWHVk (ORCPT ); Sun, 23 Aug 2015 03:21:40 -0400 Received: by pdob1 with SMTP id b1so41430637pdo.2; Sun, 23 Aug 2015 00:21:39 -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=hsy9D5OqcmqjABF514vBEn4lz7bmDuW28gDg+ECvypU=; b=ONmNwmF+TqMacFmkYZMar/7jfTvHQKueKlqqgN1X2As3hRif8eLAAlMOfq+eYnZOcu myjPNy8XDOY4X+UlfcaSNpKh8AO7ey4JRUBCl7MpBG2w35FlX39Xujl3Xz3PtMHnSWjc TxbGg+aQ5O31B3UxG6Dz4NkXbzD2vGWVxZx0D0bKrsgxo6UiQ2gCeADHyB99DRHZ+xkr A0C8l9pvb2q1wz5gGkeR9GzBg7dkhCyrN+PibgAuo2IL0VWF5zII+WY7m6dytYyNU0D8 DIap75bVAWX+HDvRTO8HIYUIKIe+25OkkAqlZxXaDIYeS1nDTgLgym+c4iKIper8GXgU MLIQ== X-Received: by 10.70.50.2 with SMTP id y2mr33301389pdn.5.1440314499873; Sun, 23 Aug 2015 00:21:39 -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 qr5sm13130992pbb.26.2015.08.23.00.21.36 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 23 Aug 2015 00:21:38 -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:42 +0900 Message-Id: <20150823072542.14156.72834.sendpatchset@little-apple> In-Reply-To: <20150823072427.14156.1960.sendpatchset@little-apple> References: <20150823072427.14156.1960.sendpatchset@little-apple> Subject: [PATCH v2 07/07] ARM: shmobile: Prioritize r8a7791 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 r8a7791 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: - Broke out bits from former r8a7791-specific patch. arch/arm/mach-shmobile/setup-r8a7791.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-r8a7791.c +++ work/arch/arm/mach-shmobile/setup-r8a7791.c 2015-08-23 15:46:53.002366518 +0900 @@ -29,6 +29,7 @@ static const char *const r8a7791_boards_ }; DT_MACHINE_START(R8A7791_DT, "Generic R8A7791 (Flattened Device Tree)") + .smp_init = shmobile_smp_init_fallback_ops, .smp = smp_ops(r8a7791_smp_ops), .init_early = shmobile_init_delay, .init_time = rcar_gen2_timer_init,