[git commit] suppress a few "unused function" warnings

Denys Vlasenko vda.linux at googlemail.com
Fri Oct 25 11:05:15 UTC 2019


commit: https://git.busybox.net/busybox/commit/?id=e5897d041d704a40efc8480cb2a72ef6843d0642
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/ntpd.c       | 2 ++
 networking/tls_aesgcm.c | 2 ++
 procps/nmeter.c         | 5 -----
 util-linux/fdisk.c      | 2 ++
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/networking/ntpd.c b/networking/ntpd.c
index 48dc1c379..47410c21e 100644
--- a/networking/ntpd.c
+++ b/networking/ntpd.c
@@ -504,12 +504,14 @@ static ALWAYS_INLINE double MAXD(double a, double b)
 		return a;
 	return b;
 }
+#if !USING_KERNEL_PLL_LOOP
 static ALWAYS_INLINE double MIND(double a, double b)
 {
 	if (a < b)
 		return a;
 	return b;
 }
+#endif
 static NOINLINE double my_SQRT(double X)
 {
 	union {
diff --git a/networking/tls_aesgcm.c b/networking/tls_aesgcm.c
index a4663cd79..5ddcdd2ad 100644
--- a/networking/tls_aesgcm.c
+++ b/networking/tls_aesgcm.c
@@ -13,6 +13,7 @@ typedef uint32_t word32;
 
 /* from wolfssl-3.15.3/wolfcrypt/src/aes.c */
 
+#ifdef UNUSED
 static ALWAYS_INLINE void FlattenSzInBits(byte* buf, word32 sz)
 {
     /* Multiply the sz by 8 */
@@ -32,6 +33,7 @@ static ALWAYS_INLINE void FlattenSzInBits(byte* buf, word32 sz)
 //    buf[7] = sz & 0xff;
     *(uint32_t*)(buf + 4) = SWAP_BE32(sz);
 }
+#endif
 
 static void RIGHTSHIFTX(byte* x)
 {
diff --git a/procps/nmeter.c b/procps/nmeter.c
index f0eb36740..ae16d8548 100644
--- a/procps/nmeter.c
+++ b/procps/nmeter.c
@@ -122,11 +122,6 @@ static inline void reset_outbuf(void)
 	cur_outbuf = outbuf;
 }
 
-static inline int outbuf_count(void)
-{
-	return cur_outbuf - outbuf;
-}
-
 static void print_outbuf(void)
 {
 	int sz = cur_outbuf - outbuf;
diff --git a/util-linux/fdisk.c b/util-linux/fdisk.c
index 076c5ca57..e58cb0fd1 100644
--- a/util-linux/fdisk.c
+++ b/util-linux/fdisk.c
@@ -588,11 +588,13 @@ partname(const char *dev, int pno, int lth)
 	return bufp;
 }
 
+#if ENABLE_FEATURE_SGI_LABEL || ENABLE_FEATURE_OSF_LABEL
 static ALWAYS_INLINE struct partition *
 get_part_table(int i)
 {
 	return ptes[i].part_table;
 }
+#endif
 
 static ALWAYS_INLINE const char *
 str_units(void)


More information about the busybox-cvs mailing list