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 2CFA9C46467 for ; Sat, 7 Jan 2023 23:25:56 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 9B24985059; Sun, 8 Jan 2023 00:25:53 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=canonical.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=canonical.com header.i=@canonical.com header.b="ZP2ClVS+"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 71B148535C; Sun, 8 Jan 2023 00:25:52 +0100 (CET) Received: from smtp-relay-canonical-0.canonical.com (smtp-relay-canonical-0.canonical.com [185.125.188.120]) (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 B66B485019 for ; Sun, 8 Jan 2023 00:25:49 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=canonical.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=heinrich.schuchardt@canonical.com Received: from LT2ubnt.fritz.box (ip-088-152-145-137.um26.pools.vodafone-ip.de [88.152.145.137]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-0.canonical.com (Postfix) with ESMTPSA id BF1993F948; Sat, 7 Jan 2023 23:25:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1673133944; bh=4qzWSl6q8ouVegifwxYAhZOjVYmx52AipIjYjFsAZwg=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=ZP2ClVS+CGjeiqZt7N3Hs/rj6/Tocznv8QjCxHusr/GJsgAPYqmEyWmYrKrPhK3AF v2sA+jJKnKmFnhIcHrgQ6lUA7yzeUa8urInQgNgUQdbZejVj6oI0vg8ehJzmCbt8fk j8OCChrBMyygJ7QfYgkeDf2wkaaycMvbCYI3FNKAWzlOiGeNH0mHdYpeEtrIqxx+3n oY4219urN+m6wrho1cGnK6h4Q+iNDQsR5UeOnC+C+vmv5GmpkMqlg+18Z1oVtvBZ3L 5tHtEWB+idvr/HOu+scR9qpJAOM3p8ed9YTOKePHlmZixtQWnksTEg/Yl6/Fur4rju w1CjwgNZF+cRw== From: Heinrich Schuchardt To: Ilias Apalodimas Cc: u-boot@lists.denx.de, Heinrich Schuchardt Subject: [PATCH 1/1] doc: fix description of u16_strcasecmp() Date: Sun, 8 Jan 2023 00:25:34 +0100 Message-Id: <20230107232534.230618-1-heinrich.schuchardt@canonical.com> X-Mailer: git-send-email 2.37.2 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.6 at phobos.denx.de X-Virus-Status: Clean Remove non-existent parameter 'n' from function description. Fixes: 7a9b366cd9b7 ("lib: add function u16_strcasecmp()") Signed-off-by: Heinrich Schuchardt --- include/charset.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/charset.h b/include/charset.h index 6e79d7152e..44034c71d3 100644 --- a/include/charset.h +++ b/include/charset.h @@ -178,7 +178,6 @@ s32 utf_to_upper(const s32 code); * * @s1: first string to compare * @s2: second string to compare - * @n: maximum number of u16 to compare * Return: 0 if the first n u16 are the same in s1 and s2 * < 0 if the first different u16 in s1 is less than the * corresponding u16 in s2 -- 2.37.2