[SCSI] zfcp: Remove obsolete output function from debug trace.
authorMartin Peschke <mp3@de.ibm.com>
Mon, 31 Mar 2008 09:15:25 +0000 (11:15 +0200)
committerJames Bottomley <James.Bottomley@HansenPartnership.com>
Mon, 7 Apr 2008 17:19:09 +0000 (12:19 -0500)
Remove obsolete output function.

Signed-off-by: Martin Peschke <mp3@de.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
drivers/s390/scsi/zfcp_dbf.c

index 15b5342..427115b 100644 (file)
@@ -74,21 +74,6 @@ static int zfcp_dbf_tag(char *out_buf, const char *label, const char *tag)
        return len;
 }
 
-static int
-zfcp_dbf_view(char *out_buf, const char *label, const char *format, ...)
-{
-       va_list arg;
-       int len = 0;
-
-       len += sprintf(out_buf + len, "%-24s", label);
-       va_start(arg, format);
-       len += vsprintf(out_buf + len, format, arg);
-       va_end(arg);
-       len += sprintf(out_buf + len, "\n");
-
-       return len;
-}
-
 static void zfcp_dbf_outs(char **buf, const char *s1, const char *s2)
 {
        *buf += sprintf(*buf, "%-24s%s\n", s1, s2);