Commit 1e0bdad02583764e90671a2900920cffa3e9d605

Authored by Johannes Berg
Committed by Herbert Xu
1 parent f6f203faa3

crypto: bfin_crc - don't include linux/unaligned/access_ok.h

This is a specific implementation, <asm/unaligned.h> is the
multiplexer that has the arch-specific knowledge of which
of the implementations needs to be used, so include that.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/crypto/bfin_crc.c
... ... @@ -21,13 +21,13 @@
21 21 #include <linux/scatterlist.h>
22 22 #include <linux/dma-mapping.h>
23 23 #include <linux/delay.h>
24   -#include <linux/unaligned/access_ok.h>
25 24 #include <linux/crypto.h>
26 25 #include <linux/cryptohash.h>
27 26 #include <crypto/scatterwalk.h>
28 27 #include <crypto/algapi.h>
29 28 #include <crypto/hash.h>
30 29 #include <crypto/internal/hash.h>
  30 +#include <asm/unaligned.h>
31 31  
32 32 #include <asm/dma.h>
33 33 #include <asm/portmux.h>