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 C01D8C4360F for ; Fri, 22 Mar 2019 13:21:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 87FDE21873 for ; Fri, 22 Mar 2019 13:21:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553260893; bh=6WUVgXePciz43c77DLKA5CyvH8zdcHKzt1+lQAzGSWw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=VbdqCMCfo2uOBEk4AyPqppnWAfNTDMd/y5jB+GUFpDl0Zw4qjs3oELr2kaiLnRx+J 50vX6eyynvo5XLjlbONT3UIXuWT+gyXx9JV9WcXTaVOEp+2KqdgTw9/DYCqSJFVhVl XfdZlfYTL/009Fff1VeqAkMaMBR2KLh+uAyAFUCA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728149AbfCVLTh (ORCPT ); Fri, 22 Mar 2019 07:19:37 -0400 Received: from mail.kernel.org ([198.145.29.99]:46004 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726667AbfCVLTg (ORCPT ); Fri, 22 Mar 2019 07:19:36 -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 D73E1218A2; Fri, 22 Mar 2019 11:19:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553253575; bh=6WUVgXePciz43c77DLKA5CyvH8zdcHKzt1+lQAzGSWw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ZXZGYEziqIgawO2dnaddFOKmszOXCLkYOzfZxVX/8mafUu2cFP1pwo3O9bH828Q8h zQ9xMUZuTlEo8DbcaE42y7dpm8nfQPBVEbENB/d+beGJUk56Qn+z4elNXFqxqEDxSR fJ5oVutOwMMKkWiyG76rshi1usbKD3MkmB2CdDjU= 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 3.18 010/134] MIPS: ath79: Enable OF serial ports in the default config Date: Fri, 22 Mar 2019 12:13:43 +0100 Message-Id: <20190322111210.852507617@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190322111210.465931067@linuxfoundation.org> References: <20190322111210.465931067@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: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org 3.18-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