From: Nicolas Iooss Date: Thu, 21 Oct 2021 09:21:29 +0000 (+0100) Subject: ARM: 9147/1: add printf format attribute to early_print() X-Git-Tag: v5.16-rc1~152^2^3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e52fc2e7ddda78d9ced594a3bd0f840435a6560;p=thirdparty%2Fkernel%2Flinux.git ARM: 9147/1: add printf format attribute to early_print() Adding such an attribute is helpful to detect errors related to printf formats at compile-time. Link: https://lore.kernel.org/r/20160828165815.25647-1-nicolas.iooss_linux@m4x.org Signed-off-by: Nicolas Iooss Signed-off-by: Geert Uytterhoeven Signed-off-by: Russell King (Oracle) --- diff --git a/arch/arm/include/asm/setup.h b/arch/arm/include/asm/setup.h index 3ae68a1b3de62..ba0872a8dcdab 100644 --- a/arch/arm/include/asm/setup.h +++ b/arch/arm/include/asm/setup.h @@ -19,7 +19,7 @@ static const struct tagtable __tagtable_##fn __tag = { tag, fn } extern int arm_add_memory(u64 start, u64 size); -extern void early_print(const char *str, ...); +extern __printf(1, 2) void early_print(const char *str, ...); extern void dump_machine_table(void); #ifdef CONFIG_ATAGS_PROC