Author: jhb
Date: Tue Feb 27 17:51:58 2018
New Revision: 330079
URL: https://svnweb.freebsd.org/changeset/base/330079

Log:
  Move #include for rijndael.h out of x86-specific region.
  
  The #include was added inside of the conditional by accident and the lack
  of it broke non-x86 builds.
  
  Reported by:  lwhsu (jenkins), andrew

Modified:
  head/sys/dev/cxgbe/t4_main.c

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c        Tue Feb 27 17:36:01 2018        
(r330078)
+++ head/sys/dev/cxgbe/t4_main.c        Tue Feb 27 17:51:58 2018        
(r330079)
@@ -67,8 +67,8 @@ __FBSDID("$FreeBSD$");
 #include <machine/cputypes.h>
 #include <vm/vm.h>
 #include <vm/pmap.h>
-#include <crypto/rijndael/rijndael.h>
 #endif
+#include <crypto/rijndael/rijndael.h>
 #ifdef DDB
 #include <ddb/ddb.h>
 #include <ddb/db_lex.h>
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to