diff mbox series

lib: rsa: rsa-verify: Fix a typo in a debug message

Message ID 20210719140444.2862226-1-thomas.perrot@bootlin.com
State Accepted
Commit 0eadb2b2da9ef7fccd39b22487a1de581f37330a
Delegated to: Tom Rini
Headers show
Series lib: rsa: rsa-verify: Fix a typo in a debug message | expand

Commit Message

Thomas Perrot July 19, 2021, 2:04 p.m. UTC
Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>
---
 lib/rsa/rsa-verify.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini July 29, 2021, 4:49 p.m. UTC | #1
On Mon, Jul 19, 2021 at 04:04:44PM +0200, Thomas Perrot wrote:

> Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/lib/rsa/rsa-verify.c b/lib/rsa/rsa-verify.c
index bb8cc61d94b5..3840764e420e 100644
--- a/lib/rsa/rsa-verify.c
+++ b/lib/rsa/rsa-verify.c
@@ -556,7 +556,7 @@  int rsa_verify(struct image_sign_info *info,
 	 */
 	if (info->checksum->checksum_len >
 	    info->crypto->key_len) {
-		debug("%s: invlaid checksum-algorithm %s for %s\n",
+		debug("%s: invalid checksum-algorithm %s for %s\n",
 		      __func__, info->checksum->name, info->crypto->name);
 		return -EINVAL;
 	}