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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7F071C433EF for ; Mon, 22 Nov 2021 12:50:18 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 104BF8371F; Mon, 22 Nov 2021 13:50:16 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1637585416; bh=dSkcZ0ZvCXgTAV/PRHkle85pMnLifFcADq0WotQmMdw=; h=To:cc:From:Subject:In-reply-to:References:Date:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=Wif81jYIRPxbBQgV3itkggkec78JXjEVgXqzif4368XNu9hzg5iXobP4+Cah0AHOK GWwRclj7AmwhYXEBSWlTbaL2tRg0CBcDYZSTscqa5fzG9dIzf64bUQYE0J0yxV6n2T 2qia1b3Iweqnsnw6DJwm3NcmOOYbAvSmX32mYZja4/q8RXys913u4j3OfoXLFPrisf IWEP0Ucwwz+qqOqcgT8D8HFChD0u+gmjxPKkIAl3cAOSESdiAke2eHaNIvFblEJlEQ ZBz0XLQpQzpPJaA6Cfo8OGKEQpk1JbYXRm1+MN/j89YWZ3HLDMuZYXlzg48mE3z2JG 0XSM1SdoeJBgw== Received: from janitor.denx.de (unknown [62.91.23.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: noc@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 850368369E for ; Mon, 22 Nov 2021 13:50:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1637585412; bh=dSkcZ0ZvCXgTAV/PRHkle85pMnLifFcADq0WotQmMdw=; h=To:cc:From:Subject:In-reply-to:References:Date:From; b=z/wsHjJwQ/DiJ+RHe05JdluAKW54Ii893keWRhjzmGMHhp/7bVE447jTevyNtNHdx fC69wCiMqrPgBHxd/YqDmsJtuCBI3smgSMcHPTzf2UqHXgkycenW/8mU13vZhMWkQ1 Cdvavj4oGy1aAvrL6It1hdjyunPI5bFvg/tkC8zHe/rg9HANl1yTmq2KcmCX9h/+dL 3CNmJqH9+uAc2HI9fyURk59df947+L+kjYvO5wX75fDffU9WDZ1m6qHQmAjyLKWJDQ M1heBal/qyGKQwg4IhqKkVO7w1I7Im+6Xzfxd3KCyuJfDktmQsjdjmLf6YESiSHmGg 8UNPeodthkTHg== Received: by janitor.denx.de (Postfix, from userid 108) id 16F7EA02F3; Mon, 22 Nov 2021 13:50:12 +0100 (CET) Received: from gemini.denx.de (gemini.denx.de [10.4.0.2]) by janitor.denx.de (Postfix) with ESMTPS id 9E9B4A00AD; Mon, 22 Nov 2021 13:50:04 +0100 (CET) Received: from gemini.denx.de (localhost [IPv6:::1]) by gemini.denx.de (Postfix) with ESMTP id 90E9B1E1813; Mon, 22 Nov 2021 13:50:04 +0100 (CET) To: Loic Poulain cc: marex@denx.de, pali@kernel.org, lukma@denx.de, u-boot@lists.denx.de From: Wolfgang Denk Subject: Re: [PATCH v2 1/2] lib/circbuf: Make circbuf selectable symbol MIME-Version: 1.0 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8bit In-reply-to: <1637584252-15617-1-git-send-email-loic.poulain@linaro.org> References: <1637584252-15617-1-git-send-email-loic.poulain@linaro.org> Comments: In-reply-to Loic Poulain message dated "Mon, 22 Nov 2021 13:30:51 +0100." Date: Mon, 22 Nov 2021 13:50:04 +0100 Message-ID: <2527692.1637585404@gemini.denx.de> X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.37 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Dear Loic Poulain, In message <1637584252-15617-1-git-send-email-loic.poulain@linaro.org> you wrote: > It is currenly only used from usbtty driver but make it properly > selectable via Kconfig symbol, for future usage. > > Signed-off-by: Loic Poulain > --- > v2: no change > > lib/Kconfig | 3 +++ > lib/Makefile | 8 +++++++- > 2 files changed, 10 insertions(+), 1 deletion(-) > > diff --git a/lib/Kconfig b/lib/Kconfig > index c535147..1bd54d8 100644 > --- a/lib/Kconfig > +++ b/lib/Kconfig > @@ -290,6 +290,9 @@ config TRACE_EARLY_ADDR > the size is too small then the message which says the amount of early > data being coped will the the same as the > > +config CIRCBUF > + bool > + > source lib/dhry/Kconfig Please add a description what this symbos is doing. Thanks. Wolfgang Denk -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de Old programmers never die, they just become managers.