|
|
@@ -0,0 +1,26 @@
|
|
|
+From: Shiji Yang <[email protected]>
|
|
|
+Date: Wed, 7 May 2025 20:24:34 +0800
|
|
|
+Subject: [PATCH] add missing prototype for IFX_Var_Fifo_getRoom()
|
|
|
+
|
|
|
+Fix build warning on 6.12 kernel:
|
|
|
+
|
|
|
+/home/db/owrt/build_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/linux-ipq40xx_generic/ifxos-ugw_8.5.2.10/src/common/ifx_fifo.c:532:14: error: no previous prototype for 'IFX_Var_Fifo_getRoom' [-Werror=missing-prototypes]
|
|
|
+ 532 | IFX_uint32_t IFX_Var_Fifo_getRoom (IFX_VFIFO *pFifo)
|
|
|
+ | ^~~~~~~~~~~~~~~~~~~~
|
|
|
+
|
|
|
+Signed-off-by: Shiji Yang <[email protected]>
|
|
|
+---
|
|
|
+ src/include/ifx_fifo.h | 2 ++
|
|
|
+ 1 file changed, 2 insertions(+)
|
|
|
+
|
|
|
+--- a/src/include/ifx_fifo.h
|
|
|
++++ b/src/include/ifx_fifo.h
|
|
|
+@@ -104,6 +104,8 @@ extern IFX_int8_t IFX_Var_Fifo_isFull
|
|
|
+ IFX_VFIFO *pFifo);
|
|
|
+ extern IFX_uint32_t IFX_Var_Fifo_getCount(
|
|
|
+ IFX_VFIFO *pFifo);
|
|
|
++extern IFX_uint32_t IFX_Var_Fifo_getRoom(
|
|
|
++ IFX_VFIFO *pFifo);
|
|
|
+
|
|
|
+ #ifdef __cplusplus
|
|
|
+ }
|