From 4f62facf107ed3e252f105d4c2c78182e213071a Mon Sep 17 00:00:00 2001 From: Mieczyslaw Nalewaj Date: Sun, 18 May 2025 13:56:39 +0200 Subject: [PATCH] mips: ralink: add missing include Missing headers causes an error on kernel 6.12: arch/mips/ralink/irq.c:86:5: error: no previous prototype for 'get_c0_perfcount_int' [-Werror=missing-prototypes] 86 | int get_c0_perfcount_int(void) | ^~~~~~~~~~~~~~~~~~~~ arch/mips/ralink/irq.c:92:14: error: no previous prototype for 'get_c0_compare_int' [-Werror=missing-prototypes] 92 | unsigned int get_c0_compare_int(void) | ^~~~~~~~~~~~~~~~~~ cc1: all warnings being treated as errors Signed-off-by: Mieczyslaw Nalewaj Link: https://github.com/openwrt/openwrt/pull/18654 Signed-off-by: Hauke Mehrtens --- .../931-mips-ralink-add-missing-include.patch | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 target/linux/ramips/patches-6.12/931-mips-ralink-add-missing-include.patch diff --git a/target/linux/ramips/patches-6.12/931-mips-ralink-add-missing-include.patch b/target/linux/ramips/patches-6.12/931-mips-ralink-add-missing-include.patch new file mode 100644 index 00000000000..710423b8e52 --- /dev/null +++ b/target/linux/ramips/patches-6.12/931-mips-ralink-add-missing-include.patch @@ -0,0 +1,25 @@ +From: Mieczyslaw Nalewaj +Date: Mon, 18 Nov 2024 21:28:05 +0100 +Subject: mips: ralink: add missing include + +Missing headers causes an error on kernel 6.12: +arch/mips/ralink/irq.c:86:5: error: no previous prototype for 'get_c0_perfcount_int' [-Werror=missing-prototypes] + 86 | int get_c0_perfcount_int(void) + | ^~~~~~~~~~~~~~~~~~~~ +arch/mips/ralink/irq.c:92:14: error: no previous prototype for 'get_c0_compare_int' [-Werror=missing-prototypes] + 92 | unsigned int get_c0_compare_int(void) + | ^~~~~~~~~~~~~~~~~~ +cc1: all warnings being treated as errors + +Signed-off-by: Mieczyslaw Nalewaj +--- +--- a/arch/mips/ralink/irq.c ++++ b/arch/mips/ralink/irq.c +@@ -15,6 +15,7 @@ + + #include + #include ++#include + + #include "common.h" +