Message ID | 20200804192654.12783-10-krzk@kernel.org |
---|---|
State | New |
Headers | show |
Series | [v2,01/13] clk: samsung: s3c64xx: declare s3c64xx_clk_init() in shared header | expand |
diff --git a/arch/arm/mach-s3c24xx/s3c2443.c b/arch/arm/mach-s3c24xx/s3c2443.c index 4cbeb74cf3d6..c278cfc10ba5 100644 --- a/arch/arm/mach-s3c24xx/s3c2443.c +++ b/arch/arm/mach-s3c24xx/s3c2443.c @@ -38,6 +38,7 @@ #include <plat/cpu.h> #include <plat/adc-core.h> +#include "common.h" #include "fb-core.h" #include "nand-core.h" #include "spi-core.h"
Include common.h header in the s3c2443.c to bring the prototypes of defined functions and fix W=1 compile warnings: arch/arm/mach-s3c24xx/s3c2443.c:60:12: warning: no previous prototype for 's3c2443_init' [-Wmissing-prototypes] 60 | int __init s3c2443_init(void) arch/arm/mach-s3c24xx/s3c2443.c:77:13: warning: no previous prototype for 's3c2443_init_uarts' [-Wmissing-prototypes] 77 | void __init s3c2443_init_uarts(struct s3c2410_uartcfg *cfg, int no) arch/arm/mach-s3c24xx/s3c2443.c:88:13: warning: no previous prototype for 's3c2443_map_io' [-Wmissing-prototypes] 88 | void __init s3c2443_map_io(void) Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> --- Changes since v1: 1. New patch --- arch/arm/mach-s3c24xx/s3c2443.c | 1 + 1 file changed, 1 insertion(+)