From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1E9B6C32750 for ; Fri, 2 Aug 2019 09:57:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E2B502064A for ; Fri, 2 Aug 2019 09:57:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564739821; bh=CLg68tfzKMVwWEvkzvAmfZIb7/a7kh58NQrcf00uExY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=J52fw1PolAhA6EXfTWyezMmsNX5cJQ7mBxoZyOycwJ4nG3rjMr2U6GQJ8Q3dneDcq 3FrvcnZ+ui3y2YB4VGdmrZLLCb+rGKrZd+mWOlMy0qD2fkvgtkrQJ6DxyE8vnCmnB7 48st8DIAWa7Y1w9ZA8b+Ch+2iqyjUZLvYD7nIDE0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2406815AbfHBJ47 (ORCPT ); Fri, 2 Aug 2019 05:56:59 -0400 Received: from mail.kernel.org ([198.145.29.99]:36018 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2406803AbfHBJ44 (ORCPT ); Fri, 2 Aug 2019 05:56:56 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 346832067D; Fri, 2 Aug 2019 09:56:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564739815; bh=CLg68tfzKMVwWEvkzvAmfZIb7/a7kh58NQrcf00uExY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UzGOMcIsSEuDV1y3YRCf6W/4TibAIAo3Xw0P5AQidWHf/tkND/9dvoFcQP2F7IeZD PsYMQa84G6r3cox0ws3rLxxG+qKqyvARfxpiMCQPaLn2ks6Llktsu7Ta68m2jbCMnP skUaT1elIzZdpZrWfKI/k4VRBx7kAj8zw5DwSmyA= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Yoshinori Sato Subject: [PATCH 4.19 29/32] Fix allyesconfig output. Date: Fri, 2 Aug 2019 11:40:03 +0200 Message-Id: <20190802092110.918219220@linuxfoundation.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190802092101.913646560@linuxfoundation.org> References: <20190802092101.913646560@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Yoshinori Sato commit 1b496469d0c020e09124e03e66a81421c21272a7 upstream. Conflict JCore-SoC and SolutionEngine 7619. Signed-off-by: Yoshinori Sato Signed-off-by: Greg Kroah-Hartman --- arch/sh/boards/Kconfig | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) --- a/arch/sh/boards/Kconfig +++ b/arch/sh/boards/Kconfig @@ -8,27 +8,19 @@ config SH_ALPHA_BOARD bool config SH_DEVICE_TREE - bool "Board Described by Device Tree" + bool select OF select OF_EARLY_FLATTREE select TIMER_OF select COMMON_CLK select GENERIC_CALIBRATE_DELAY - help - Select Board Described by Device Tree to build a kernel that - does not hard-code any board-specific knowledge but instead uses - a device tree blob provided by the boot-loader. You must enable - drivers for any hardware you want to use separately. At this - time, only boards based on the open-hardware J-Core processors - have sufficient driver coverage to use this option; do not - select it if you are using original SuperH hardware. config SH_JCORE_SOC bool "J-Core SoC" - depends on SH_DEVICE_TREE && (CPU_SH2 || CPU_J2) + select SH_DEVICE_TREE select CLKSRC_JCORE_PIT select JCORE_AIC - default y if CPU_J2 + depends on CPU_J2 help Select this option to include drivers core components of the J-Core SoC, including interrupt controllers and timers.