From: Herbert Xu Date: Wed, 22 Apr 2015 07:06:33 +0000 (+0800) Subject: mac802154: Include crypto/aead.h X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8a1a2b717e0d4d5f3e3bb59b7dee5079a15ab24b;p=openwrt%2Fstaging%2Fblogic.git mac802154: Include crypto/aead.h All users of AEAD should include crypto/aead.h instead of include/linux/crypto.h. This patch also removes a bogus inclusion of algapi.h which should only be used by algorithm/driver implementors and not crypto users. Instead linux/crypto.h is added which is necessary because mac802154 also uses blkcipher in addition to aead. Signed-off-by: Herbert Xu Acked-by: David S. Miller --- diff --git a/net/mac802154/llsec.c b/net/mac802154/llsec.c index dcf73958133a..3ccf1e9b2229 100644 --- a/net/mac802154/llsec.c +++ b/net/mac802154/llsec.c @@ -17,8 +17,9 @@ #include #include #include +#include #include -#include +#include #include "ieee802154_i.h" #include "llsec.h"