diff options
| author | Shiji Yang | 2025-05-10 09:19:18 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-10-18 12:21:01 +0000 |
| commit | 73571ef4f4adf895d11e90e8b021ecdcbfe7198b (patch) | |
| tree | e993bd55f2278026f6e5bbaafae6c9e6ce074069 | |
| parent | e8639f57c51c676f7a84fbbd632737ccdaf28438 (diff) | |
| download | openwrt-73571ef4f4adf895d11e90e8b021ecdcbfe7198b.tar.gz | |
ltq-vdsl-vr11-mei: fix missing-prototypes build warnings
Add prototype definition for exported function ifx_mei_atm_led_blink().
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/18744
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit eb18b602da639577573930fd4e800ed716928b4f)
Signed-off-by: Nora Matthias Schiffer <neocturne@universe-factory.net>
Link: https://github.com/openwrt/openwrt/pull/20440
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/kernel/lantiq/ltq-vdsl-vr11-mei/patches/132-add-missing-prototype-for-ifx_mei_atm_led_blink.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/kernel/lantiq/ltq-vdsl-vr11-mei/patches/132-add-missing-prototype-for-ifx_mei_atm_led_blink.patch b/package/kernel/lantiq/ltq-vdsl-vr11-mei/patches/132-add-missing-prototype-for-ifx_mei_atm_led_blink.patch new file mode 100644 index 0000000000..e2f77ba75b --- /dev/null +++ b/package/kernel/lantiq/ltq-vdsl-vr11-mei/patches/132-add-missing-prototype-for-ifx_mei_atm_led_blink.patch @@ -0,0 +1,24 @@ +From: Shiji Yang <yangshiji66@outlook.com> +Date: Wed, 7 May 2025 21:57:39 +0800 +Subject: [PATCH] add missing prototype for ifx_mei_atm_led_blink() + +Fix build warning on 6.12 kernel: +/home/db/owrt/build_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/linux-ipq40xx_generic/dsl_cpe_mei-ugw_8.5.2.10/src/drv_mei_cpe_api_atm_ptm_intern.c:658:5: error: no previous prototype for 'ifx_mei_atm_led_blink' [-Werror=missing-prototypes] + 658 | int ifx_mei_atm_led_blink(void) + | ^~~~~~~~~~~~~~~~~~~~~ + +Signed-off-by: Shiji Yang <yangshiji66@outlook.com> +--- + src/drv_mei_cpe_api_atm_ptm_intern.h | 1 + + 1 file changed, 1 insertion(+) + +--- a/src/drv_mei_cpe_api_atm_ptm_intern.h ++++ b/src/drv_mei_cpe_api_atm_ptm_intern.h +@@ -91,6 +91,7 @@ extern IFX_int32_t MEI_InternalLineTCMod + IFX_int8_t nInstance, + IFX_boolean_t bPowerUp, + IFX_boolean_t bKillMEIControlThread); ++int ifx_mei_atm_led_blink(void); + + #ifdef PPA_SUPPORTS_CALLBACKS + extern int ppa_callback_set(e_ltq_mei_cb_type type, void *func); |