From patchwork Tue Dec 16 09:39:31 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 5500091 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.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id D7035BEEA8 for ; Tue, 16 Dec 2014 09:36:57 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 227AF20A22 for ; Tue, 16 Dec 2014 09:36:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4D94320A1C for ; Tue, 16 Dec 2014 09:36:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751355AbaLPJgu (ORCPT ); Tue, 16 Dec 2014 04:36:50 -0500 Received: from mail-pd0-f179.google.com ([209.85.192.179]:54813 "EHLO mail-pd0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751353AbaLPJgs (ORCPT ); Tue, 16 Dec 2014 04:36:48 -0500 Received: by mail-pd0-f179.google.com with SMTP id fp1so13608308pdb.38 for ; Tue, 16 Dec 2014 01:36:47 -0800 (PST) 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=N5hMWkanAIJe+ZBWo2Qg/DpNwlLu84+nZAcRGTCaE+s=; b=F9PWLS50QZyltFwF1AnMTfvoD7Vq/gpU/7SVqtv1q71yz/xatTurPal40XmZidNEPO sZhW9omUKiR6VS+Xi/xLjxuxj90HAAL+XlY+zW8DjPV4Y4Rd+LlZtinWcGhbEzwjFjiH FHLTwTp0T67QqcSMczv24GL1udDocomeDDgwphgHm2bU/6QAEBSjmBEnzOFdNw3AWQqJ a9gaecgm8v9kpvcMVDwMbLcGuDGlLY//f9Ds7YnCVnLx7LVXiiX3s6xwO7rTUbVRL0dk xjss1GtLzAAlNhmYF0BQmdmLUQy5TGsjCa2sw1WE4jyJiLntL0mIf9Xn8Cjsu2RRsUe0 iFbQ== X-Received: by 10.68.189.71 with SMTP id gg7mr57783841pbc.21.1418722607726; Tue, 16 Dec 2014 01:36:47 -0800 (PST) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id hj2sm347145pbc.69.2014.12.16.01.36.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 16 Dec 2014 01:36:46 -0800 (PST) From: Magnus Damm To: Magnus Damm , linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Tue, 16 Dec 2014 18:39:31 +0900 Message-Id: <20141216093931.14252.89982.sendpatchset@w520> In-Reply-To: <20141216093921.14252.42200.sendpatchset@w520> References: <20141216093921.14252.42200.sendpatchset@w520> Subject: [PATCH 01/02] ARM: shmobile: r8a7779: No TWD setup in C for Multiplatform 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 Skip the TWD setup in C for r8a7779 Multiplatform. We should use DTS for the TWD device anyway. Signed-off-by: Magnus Damm --- Built on top of renesas-devel-20141216v2-v3.18 No special dependencies arch/arm/mach-shmobile/smp-r8a7779.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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/smp-r8a7779.c +++ work/arch/arm/mach-shmobile/smp-r8a7779.c 2014-12-16 18:24:44.000000000 +0900 @@ -56,7 +56,7 @@ static struct rcar_sysc_ch *r8a7779_ch_c [3] = &r8a7779_ch_cpu3, }; -#ifdef CONFIG_HAVE_ARM_TWD +#if defined(CONFIG_HAVE_ARM_TWD) && !defined(CONFIG_ARCH_MULTIPLATFORM) static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, R8A7779_SCU_BASE + 0x600, 29); void __init r8a7779_register_twd(void) {