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 47270C10F00 for ; Mon, 25 Feb 2019 21:44:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0D3DB20842 for ; Mon, 25 Feb 2019 21:44:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551131067; bh=ectQ3TDOk6xJ4UhhWDbSkOMK65Dq5QDdLGJTdnDWCCg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=mp8wrvH8nRUmGrUuydXhoQcw2h+nXkRtVax9DEjYJS1qW8ZFKPU13cNJpxU0zxBe0 UPCD45lyCnqNE08S0tV3u6I5718TN5l1ZETqQi9DIOYiReTXV6Po8GeLbYHVzgeqwa /5h/pSecW4oELo3BnKS93PHIVuiIXFCT764io6TE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731903AbfBYVaX (ORCPT ); Mon, 25 Feb 2019 16:30:23 -0500 Received: from mail.kernel.org ([198.145.29.99]:36036 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731073AbfBYVaW (ORCPT ); Mon, 25 Feb 2019 16:30:22 -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 24D182184E; Mon, 25 Feb 2019 21:30:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551130221; bh=ectQ3TDOk6xJ4UhhWDbSkOMK65Dq5QDdLGJTdnDWCCg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nniE0Dzkzja532B1s1r6I/p7KUAyfReRVpifQcSu4z4XLdyL5if5+Tz5ayjfhZTWz 23pKAPYkDx5sNyBkEGyu1nN9Y+lbKyntK84LYyaGXSljBl8LfdZ8F8jjIJTV302aO3 +lo8v4cqJgw6G7XW1ndrJMLCUcP1BUgqIHUc0R10= 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.20 051/183] MIPS: ath79: Enable OF serial ports in the default config Date: Mon, 25 Feb 2019 22:10:24 +0100 Message-Id: <20190225195103.188515640@linuxfoundation.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190225195054.748060397@linuxfoundation.org> References: <20190225195054.748060397@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.20-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 951c4231bdb85..4c47b3fd958b6 100644 --- a/arch/mips/configs/ath79_defconfig +++ b/arch/mips/configs/ath79_defconfig @@ -71,6 +71,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