Date: Tue, 27 Feb 2018 17:51:58 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r330079 - head/sys/dev/cxgbe Message-ID: <201802271751.w1RHpw4X010570@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802271751.w1RHpw4X010570>