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 40902C77B7E for ; Mon, 29 May 2023 14:26:08 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8D99B846E7; Mon, 29 May 2023 16:26:05 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="mkea+Y+0"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 25878846F3; Mon, 29 May 2023 16:26:04 +0200 (CEST) Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 7E23F84662 for ; Mon, 29 May 2023 16:26:01 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=eugen.hristev@collabora.com Received: from eugen-station.. (unknown [46.8.172.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: ehristev) by madras.collabora.co.uk (Postfix) with ESMTPSA id B9DFE66028F5; Mon, 29 May 2023 15:26:00 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1685370361; bh=+M/6LSdrfXI2a46I29u14BXXlMMciPyF9D3eH4EqfOg=; h=From:To:Cc:Subject:Date:From; b=mkea+Y+0v8xOFzcGB5mgI5wGflVhqovOiHJCw6vb6c4vHO9jmbIzypzODWTX8JJzG 7zgSY2qapbUe5B7I1+r9euomLdlYcPY6yR6W4A1J4W1/B8E6YYnNDDWowxnwm1SjJg bwq0ejkwQMCr/k4TdlVUFlrd9Du1+XWXYRD2MecAmjcN+ETwwQeoCMp3S0/NAApjRk 0KnA9ZDEcaP3NEVzQvumLlTEEVda85jMt0haL9ET63Q1A46A2fjz+jHgEWM0DjsoHi EJV4NhwSy2KXudBnAm+D6pNYFWkxpsmzF+yEio+rPnT1EifANEvXuZY8Fw9CjJ8r7x /wJuk/awdcgQw== From: Eugen Hristev To: u-boot@lists.denx.de Cc: Eugen Hristev Subject: [PATCH] spl: Kconfig: fix trivial typo Suppport Date: Mon, 29 May 2023 17:25:54 +0300 Message-Id: <20230529142554.41464-1-eugen.hristev@collabora.com> X-Mailer: git-send-email 2.34.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 s/Suppport/Support Signed-off-by: Eugen Hristev --- common/spl/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 2c042ad30668..c66b38ee676d 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1373,7 +1373,7 @@ config SYS_USB_FAT_BOOT_PARTITION Partition on the USB storage device to load U-Boot from config SPL_USB_GADGET - bool "Suppport USB Gadget drivers" + bool "Support USB Gadget drivers" help Enable USB Gadget API which allows to enable USB device functions in SPL. -- 2.34.1