Author: eadler
Date: Tue Sep 25 01:28:13 2012
New Revision: 240903
URL: http://svn.freebsd.org/changeset/base/240903

Log:
  MFC r240466:
        Define missing DEBUGOUT# macros. DEBUGOUT[45] are not yet used but are
        being defined pre-emptively to avoid future build breakage
  
  PR:           kern/168967
  Approved by:  cperciva (implicit)

Modified:
  stable/8/sys/dev/ixgbe/ixgbe_osdep.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/dev/   (props changed)
  stable/8/sys/dev/ixgbe/   (props changed)

Modified: stable/8/sys/dev/ixgbe/ixgbe_osdep.h
==============================================================================
--- stable/8/sys/dev/ixgbe/ixgbe_osdep.h        Mon Sep 24 23:57:16 2012        
(r240902)
+++ stable/8/sys/dev/ixgbe/ixgbe_osdep.h        Tue Sep 25 01:28:13 2012        
(r240903)
@@ -68,12 +68,17 @@
        #define DEBUGOUT1(S,A)      printf(S "\n",A)
        #define DEBUGOUT2(S,A,B)    printf(S "\n",A,B)
        #define DEBUGOUT3(S,A,B,C)  printf(S "\n",A,B,C)
+       #define DEBUGOUT4(S,A,B,C,D)  printf(S "\n",A,B,C,D)
+       #define DEBUGOUT5(S,A,B,C,D,E)  printf(S "\n",A,B,C,D,E)
+       #define DEBUGOUT6(S,A,B,C,D,E,F)  printf(S "\n",A,B,C,D,E,F)
        #define DEBUGOUT7(S,A,B,C,D,E,F,G)  printf(S "\n",A,B,C,D,E,F,G)
 #else
        #define DEBUGOUT(S)
        #define DEBUGOUT1(S,A)
        #define DEBUGOUT2(S,A,B)
        #define DEBUGOUT3(S,A,B,C)
+       #define DEBUGOUT4(S,A,B,C,D)
+       #define DEBUGOUT5(S,A,B,C,D,E)
        #define DEBUGOUT6(S,A,B,C,D,E,F)
        #define DEBUGOUT7(S,A,B,C,D,E,F,G)
 #endif
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to