Fix compile when CONFIG_FEATURE_HDPARM_GET_IDENTITY is disabled
authorEric Andersen <andersen@codepoet.org>
Fri, 12 Dec 2003 00:08:57 +0000 (00:08 -0000)
committerEric Andersen <andersen@codepoet.org>
Fri, 12 Dec 2003 00:08:57 +0000 (00:08 -0000)
miscutils/hdparm.c

index 6580bf592a6200dc03e37ce9fd95df108d6c6356..16ab7e67d4f62b1f59e39255e595abc2968ac804 100644 (file)
@@ -507,6 +507,8 @@ static void bb_ioctl_on_off(int fd, int request, void *argp, const char *string,
                on_off((unsigned long) argp);
        }
 }
+
+#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
 static void if_else_printf(unsigned long i, char *fmt1, char *fmt2, ... )
 {
                va_list ap;
@@ -529,6 +531,13 @@ static void xprint_ascii(uint16_t *val ,int i, char * string, int n)
        }
 }
 
+static void if_strcat(unsigned long test, char *modes, char *string)
+{
+       if (test)
+               strcat(modes,string);
+}
+#endif
+
 static void sync_and_sleep(int i)
 {
        sync();
@@ -568,12 +577,6 @@ unsigned long int set_flag(char *p, char max)
        return 0;
 }
 
-static void if_strcat(unsigned long test, char *modes, char *string)
-{
-       if (test)
-               strcat(modes,string);
-}
-
 /* end of  busybox specific stuff */
 
 #ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY