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=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, 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 07426C55179 for ; Tue, 27 Oct 2020 14:35:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AB2CB2222C for ; Tue, 27 Oct 2020 14:35:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603809317; bh=mbl0ZQmSAz2vpubc6FKER5xIaRO0BaXpHppFMbyEFXg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=uzC0VdY22f/6RKOlfiVFOesvE7gq9S0HbfpIpayx8LOfIqOhSUcwyxaca47f5JrKJ PFp/S6IrfiwNkduJkrd0BVAqJplNbxLoark1Qc4drzrsMtHZAAy+2uDV4HBUKXkyk6 lCgWinV/YsgHrkOKAPrIUGJlx+ojNcaIzEg85+1s= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760578AbgJ0OfQ (ORCPT ); Tue, 27 Oct 2020 10:35:16 -0400 Received: from mail.kernel.org ([198.145.29.99]:32902 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760233AbgJ0OeI (ORCPT ); Tue, 27 Oct 2020 10:34:08 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 3C52C2222C; Tue, 27 Oct 2020 14:34:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603809247; bh=mbl0ZQmSAz2vpubc6FKER5xIaRO0BaXpHppFMbyEFXg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dZVa04aIxqD3mXJ9e+Jev+MtllC22bdQ/FzzsNXq3IQURBUXyzW7gHGMoHJsaWlh/ 0P/Y9eA++myyTgk1KPN+kDT+ZdUAcAneTAwLR+SDsp3uHIfzu2azQcXBTxJVBULz6V mZ15EQtosU622ptGi5dLkRX9ST8FKPKVcSse8iKI= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Tong Zhang , Sasha Levin Subject: [PATCH 5.4 129/408] tty: serial: earlycon dependency Date: Tue, 27 Oct 2020 14:51:07 +0100 Message-Id: <20201027135501.070800040@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135455.027547757@linuxfoundation.org> References: <20201027135455.027547757@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Tong Zhang [ Upstream commit 0fb9342d06b0f667b915ba58bfefc030e534a218 ] parse_options() in drivers/tty/serial/earlycon.c calls uart_parse_earlycon in drivers/tty/serial/serial_core.c therefore selecting SERIAL_EARLYCON should automatically select SERIAL_CORE, otherwise will result in symbol not found error during linking if SERIAL_CORE is not configured as builtin Fixes: 9aac5887595b ("tty/serial: add generic serial earlycon") Signed-off-by: Tong Zhang Link: https://lore.kernel.org/r/20200828123949.2642-1-ztong0001@gmail.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/tty/serial/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index 67a9eb3f94cec..a9751a83d5dbb 100644 --- a/drivers/tty/serial/Kconfig +++ b/drivers/tty/serial/Kconfig @@ -10,6 +10,7 @@ menu "Serial drivers" config SERIAL_EARLYCON bool + depends on SERIAL_CORE help Support for early consoles with the earlycon parameter. This enables the console before standard serial driver is probed. The console is -- 2.25.1