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 0EEABC001DC for ; Sat, 29 Jul 2023 13:35:10 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id EC3468672B; Sat, 29 Jul 2023 15:35:07 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (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=1690637708; bh=qZ4KaVZ6H1D28E4clWtHt8vyvYTwWFZuE5arFbXMpvg=; h=From:To:Cc:Subject:Date:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=oCDrH2o+Sa1pkUVJZZsEqPZ5Elt/GoLIxxNuJZTl0b8YnCMYll6rVZcEqwM0YphJl FJd0I3kT5h7n2E/kJedWbeZHaOcPbRpLGDtbdeZEzM/Tcgn6cRy792LHWzVMYrY5Yz /2mK5+odSKLxnQ2T2PP3D3q8fo9jfbTfBmae1Ykucl7JFOLsjlJq+evO4KaEt+5Ozm Qy/VAM3uepGTre17vWl9CcAL3ASxUJjE2NRLzIy6Ysqihxxe9tLT5wRWwGFfD2o9zN 9m79NpMc8lh2/QoVhkYv6e3tJf+OwMIoC4rSXi1IJbdVJcpikVn20gidqpr7MSDnlQ hFUuOGJGQRJag== Received: from tr.lan (ip-86-49-120-218.bb.vodafone.cz [86.49.120.218]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 83F0C866DA; Sat, 29 Jul 2023 15:35:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1690637705; bh=qZ4KaVZ6H1D28E4clWtHt8vyvYTwWFZuE5arFbXMpvg=; h=From:To:Cc:Subject:Date:From; b=M5k7JmfFlqQfQ56/Dtof1rCuRb05W7ZoR/O60XFVdWQA0jLT7Odn4UvQyn7M1p1U2 3dou4cvCEgunETK6p1CnizZQOZGwjV2yo4S/0Mk6Lux4/9dPB3UconRCN8tholpqwY +MfkMUahr+AUK362sy4f6dq/XYGzRn1IW1hS3umpWdshbRKDqFunTLzhOGrsduiN// asbdGNulodWFz0Py/Be3/Cjg+L4/TP0mmm42dkntOVjmyeLdtdAMwJcVXPcFzAFHZO se4ODcjJdrfv+gVd/qDtmQpPtNR0lYigvGzZyOKKbnr/hKWpHw3UAwzDUD9PySHcmT ut9nvJOSzpj0w== From: Marek Vasut To: u-boot@lists.denx.de Cc: Marek Vasut , Heinrich Schuchardt , Patrick Delaunay , Rasmus Villemoes , Simon Glass , Stefan Roese Subject: [PATCH] common: Drop duplicate space in SPL_BMP description Date: Sat, 29 Jul 2023 15:34:51 +0200 Message-Id: <20230729133451.9263-1-marex@denx.de> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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.8 at phobos.denx.de X-Virus-Status: Clean Drop duplicate space in Kconfig symbol description. Signed-off-by: Marek Vasut --- Cc: Heinrich Schuchardt Cc: Patrick Delaunay Cc: Rasmus Villemoes Cc: Simon Glass Cc: Stefan Roese --- common/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Kconfig b/common/Kconfig index 973482f0756..016850cd328 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -1171,7 +1171,7 @@ config BMP Enable bmp functions to display bmp image and get bmp info. config SPL_BMP - bool "Enable bmp image display at SPL" + bool "Enable bmp image display at SPL" depends on SPL_VIDEO help Enable bmp functions to display bmp image and get bmp info at SPL. -- 2.40.1