Author: avg
Date: Sat Mar 11 15:26:41 2017
New Revision: 315071
URL: https://svnweb.freebsd.org/changeset/base/315071

Log:
  MFC r314666: ioat: don't specify inline for function with variable argument 
list

Modified:
  stable/10/sys/dev/ioat/ioat_test.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/ioat/ioat_test.c
==============================================================================
--- stable/10/sys/dev/ioat/ioat_test.c  Sat Mar 11 15:26:36 2017        
(r315070)
+++ stable/10/sys/dev/ioat/ioat_test.c  Sat Mar 11 15:26:41 2017        
(r315071)
@@ -79,7 +79,7 @@ static int g_thread_index = 1;
 static struct cdev *g_ioat_cdev = NULL;
 
 #define        ioat_test_log(v, ...)   _ioat_test_log((v), "ioat_test: " 
__VA_ARGS__)
-static inline void _ioat_test_log(int verbosity, const char *fmt, ...);
+static void _ioat_test_log(int verbosity, const char *fmt, ...);
 
 static void
 ioat_test_transaction_destroy(struct test_transaction *tx)
@@ -588,7 +588,7 @@ ioat_test_detach(void)
        mtx_unlock(&Giant);
 }
 
-static inline void
+static void
 _ioat_test_log(int verbosity, const char *fmt, ...)
 {
        va_list argp;
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to