From ccf1f62d59adc933fb348b866f351824cdd00c73 Mon Sep 17 00:00:00 2001 From: Yan-Jie Wang Date: Thu, 8 Jun 2023 14:39:05 +0800 Subject: [PATCH] libfdt: Fix a typo in libfdt.h The function mentioned in the comment, fdt_finished(), should be changed to fdt_finish(). Signed-off-by: Yan-Jie Wang Signed-off-by: David Gibson --- libfdt/libfdt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfdt/libfdt.h b/libfdt/libfdt.h index 34c4d55..2a4f32c 100644 --- a/libfdt/libfdt.h +++ b/libfdt/libfdt.h @@ -1511,7 +1511,7 @@ int fdt_nop_node(void *fdt, int nodeoffset); * fdt_create_with_flags() begins the process of creating a new fdt with * the sequential write interface. * - * fdt creation process must end with fdt_finished() to produce a valid fdt. + * fdt creation process must end with fdt_finish() to produce a valid fdt. * * returns: * 0, on success