mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-15 12:25:44 +08:00
libfdt: Remove extra semi-colons outside functions
When compiling with -Werror -Wpedantic, both GCC and Clang fails, saying that these semi-colons are redundant, so remove them. Signed-off-by: Bingwu Zhang <xtexchooser@duck.com> Message-ID: <20241116101228.164707-6-xtex@envs.net> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
committed by
Joel Sherrill
parent
cea524f01e
commit
c1c2f18e4a
@@ -263,16 +263,16 @@ int fdt_next_subnode(const void *fdt, int offset);
|
||||
struct fdt_header *fdth = (struct fdt_header *)fdt; \
|
||||
fdth->name = cpu_to_fdt32(val); \
|
||||
}
|
||||
fdt_set_hdr_(magic);
|
||||
fdt_set_hdr_(totalsize);
|
||||
fdt_set_hdr_(off_dt_struct);
|
||||
fdt_set_hdr_(off_dt_strings);
|
||||
fdt_set_hdr_(off_mem_rsvmap);
|
||||
fdt_set_hdr_(version);
|
||||
fdt_set_hdr_(last_comp_version);
|
||||
fdt_set_hdr_(boot_cpuid_phys);
|
||||
fdt_set_hdr_(size_dt_strings);
|
||||
fdt_set_hdr_(size_dt_struct);
|
||||
fdt_set_hdr_(magic)
|
||||
fdt_set_hdr_(totalsize)
|
||||
fdt_set_hdr_(off_dt_struct)
|
||||
fdt_set_hdr_(off_dt_strings)
|
||||
fdt_set_hdr_(off_mem_rsvmap)
|
||||
fdt_set_hdr_(version)
|
||||
fdt_set_hdr_(last_comp_version)
|
||||
fdt_set_hdr_(boot_cpuid_phys)
|
||||
fdt_set_hdr_(size_dt_strings)
|
||||
fdt_set_hdr_(size_dt_struct)
|
||||
#undef fdt_set_hdr_
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user