suppress a few "unused function" warnings
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 25 Oct 2019 11:05:15 +0000 (13:05 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 25 Oct 2019 11:05:15 +0000 (13:05 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/ntpd.c
networking/tls_aesgcm.c
procps/nmeter.c
util-linux/fdisk.c

index 48dc1c3792a432e8b547942556dfffbdccb11d95..47410c21ea26d9bf87c698e093fc26677def3875 100644 (file)
@@ -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 {
index a4663cd7945521c785ad39409a0d72a00947089f..5ddcdd2ad835deb39af40c4d166d4775d59c0d94 100644 (file)
@@ -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)
 {
index f0eb3674058296397f96b386099c15852212eb6e..ae16d8548fccbd82b0b200a9f1bce53e76a182f9 100644 (file)
@@ -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;
index 076c5ca577e955a6b958b20307502d795e193ab6..e58cb0fd1826c47033a3923ebab4dda6e947fd0e 100644 (file)
@@ -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)