diff options
| author | Shiji Yang | 2025-05-06 11:30:52 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-07-20 13:33:02 +0000 |
| commit | 1f7514bb92afb6a3ada5260e4901842e9426e3f0 (patch) | |
| tree | 25c6d22177624e3cfd9444e7cef63793b4d572ee | |
| parent | 875c3ba079a20ccae1270531b75f4c4c2f36dca9 (diff) | |
| download | openwrt-1f7514bb92afb6a3ada5260e4901842e9426e3f0.tar.gz | |
ipq40xx: gcc-ipq4019: mark qcom_find_freq_close() function as static
This function is only used by the current source file gcc-ipq4019.c.
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/18725
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ipq40xx/patches-6.6/104-clk-fix-apss-cpu-overclocking.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ipq40xx/patches-6.6/104-clk-fix-apss-cpu-overclocking.patch b/target/linux/ipq40xx/patches-6.6/104-clk-fix-apss-cpu-overclocking.patch index a2d9fac1ec..378e530ef6 100644 --- a/target/linux/ipq40xx/patches-6.6/104-clk-fix-apss-cpu-overclocking.patch +++ b/target/linux/ipq40xx/patches-6.6/104-clk-fix-apss-cpu-overclocking.patch @@ -49,8 +49,8 @@ Signed-off-by: John Crispin <john@phrozen.org> }; + -+const struct freq_tbl *qcom_find_freq_close(const struct freq_tbl *f, -+ unsigned long rate) ++static const struct freq_tbl * ++qcom_find_freq_close(const struct freq_tbl *f, unsigned long rate) +{ + const struct freq_tbl *last = NULL; + |