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=-9.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,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 BC3AFC43381 for ; Mon, 25 Feb 2019 22:02:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 88C5B2146F for ; Mon, 25 Feb 2019 22:02:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551132179; bh=l3aZeZ61FdSiJITpVo9cMfxPWF0gRgGQa0o6hCpg4uk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Ly8dpEcpCZp7AGxok/qlIMtKYTVylhaU+D9YyDXM9MV1ZDV0PP0O16mbopxoWe8Jt YvvA3GH0oF4aBVLtc/jOO8HD/QU4STiDgzNMS722FPwa6sYsMuhnMA3Q3w/y9zgtib qCs2Q7gh63DGmU+o0+PNP9oql/iMBR3Iwv4nClXg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728758AbfBYWCx (ORCPT ); Mon, 25 Feb 2019 17:02:53 -0500 Received: from mail.kernel.org ([198.145.29.99]:46374 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729400AbfBYVPP (ORCPT ); Mon, 25 Feb 2019 16:15:15 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.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 B25D721734; Mon, 25 Feb 2019 21:15:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551129315; bh=l3aZeZ61FdSiJITpVo9cMfxPWF0gRgGQa0o6hCpg4uk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sYRdqeemXmfp45em9XK7QqiuefPB2cFIjMvoSimSVyGvViEv3pM5xygiW+5ORDN4X NgfECHtvjGl3GnYsDwVQiKxcoD3BnZ0gOfZFyRSaC5BLt/mbTpolvMBPoq1yHAXREE moDY2pRimB2hbVlCjbvW2KXm/k6lOG+Y8D9KDhyQ= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Alban Bedel , Paul Burton , linux-mips@vger.kernel.org, Ralf Baechle , James Hogan , Sasha Levin Subject: [PATCH 4.9 17/63] MIPS: ath79: Enable OF serial ports in the default config Date: Mon, 25 Feb 2019 22:11:17 +0100 Message-Id: <20190225195037.018152507@linuxfoundation.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190225195035.713274200@linuxfoundation.org> References: <20190225195035.713274200@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-mips-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ [ Upstream commit 565dc8a4f55e491935bfb04866068d21784ea9a4 ] CONFIG_SERIAL_OF_PLATFORM is needed to get a working console on the OF boards, enable it in the default config to get a working setup out of the box. Signed-off-by: Alban Bedel Signed-off-by: Paul Burton Cc: linux-mips@vger.kernel.org Cc: Ralf Baechle Cc: James Hogan Cc: linux-kernel@vger.kernel.org Signed-off-by: Sasha Levin --- arch/mips/configs/ath79_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/mips/configs/ath79_defconfig b/arch/mips/configs/ath79_defconfig index 134879c1310a0..4ed369c0ec6a1 100644 --- a/arch/mips/configs/ath79_defconfig +++ b/arch/mips/configs/ath79_defconfig @@ -74,6 +74,7 @@ CONFIG_SERIAL_8250_CONSOLE=y # CONFIG_SERIAL_8250_PCI is not set CONFIG_SERIAL_8250_NR_UARTS=1 CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +CONFIG_SERIAL_OF_PLATFORM=y CONFIG_SERIAL_AR933X=y CONFIG_SERIAL_AR933X_CONSOLE=y # CONFIG_HW_RANDOM is not set -- 2.19.1