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=ham 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 3EB93C43381 for ; Fri, 22 Mar 2019 11:28:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 100AD218A2 for ; Fri, 22 Mar 2019 11:28:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553254089; bh=lvUNEmoYphm1nf7ISKV2wRlWi2QCWtSdlBMvrguRndw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=rJpFWuWY26n7RpET8N1Fa8jf/PsnjUETwqroNVeuZMyrWthmjrEIHs7CV8Y/sOCaR UqKWH+Oiu6WjYkdKW7jEW4NjAcVcElRdvO2A8sZ42FKkiJ3AjO+VkbAJ/gj8CA0pie h+yOjR3AqyntOGnA+2clbx9eJ9+m6W3PK5CeVTD8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729077AbfCVL2I (ORCPT ); Fri, 22 Mar 2019 07:28:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:55854 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729043AbfCVL2I (ORCPT ); Fri, 22 Mar 2019 07:28:08 -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 1E5EC2183E; Fri, 22 Mar 2019 11:28:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553254087; bh=lvUNEmoYphm1nf7ISKV2wRlWi2QCWtSdlBMvrguRndw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X5I7pW+tHInjxIRdkhAPDIe6t3doo56+d1qR0Ol57/SwMfWG/qJRx81k7tuHyvU3o j/PV+S30PtRDK4U/5c4S5cK0XJzrD+Iq+3QSeMrys88RpcJqbxBgJMPNVTE7dOM5OE cGO5WXLHaKGWPqL11lDGGYb5cI8+bBI2PbkT9X5M= 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.4 012/230] MIPS: ath79: Enable OF serial ports in the default config Date: Fri, 22 Mar 2019 12:12:30 +0100 Message-Id: <20190322111237.600363791@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190322111236.796964179@linuxfoundation.org> References: <20190322111236.796964179@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.4-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