diff options
author | Arnd Bergmann <[email protected]> | 2014-05-09 13:35:39 +0200 |
---|---|---|
committer | Herbert Xu <[email protected]> | 2014-05-13 19:43:45 +0800 |
commit | 56b284461923e83daa0b622dcf0e34e264b733ef (patch) | |
tree | d8dd85c79ce49124c10d06d5d97e420e16b518ad | |
parent | 7bad94aa41f74ed09f5bfaf1d4f1b58cd457e8c3 (diff) |
crypto: s5p-sss - fix multiplatform build
As we are preparing to enable multiplatform support on EXYNOS,
we can no longer include mach/*.h or plat/*.h headers from device
drivers.
The s5p-sss driver was just enabled for EXYNOS when it used to
be used only on s5pv210, and it includes two samsung platform
specific header files for historic reasons. Fortunately, it no
longer actually needs them, so we can remove the #includes and
avoid the problem
Signed-off-by: Arnd Bergmann <[email protected]>
Cc: Naveen Krishna Chatradhi <[email protected]>
Cc: Tomasz Figa <[email protected]>
Cc: <[email protected]>
Cc: Vladimir Zapolskiy <[email protected]>
Reviewed-by: Jingoo Han <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
-rw-r--r-- | drivers/crypto/s5p-sss.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/crypto/s5p-sss.c b/drivers/crypto/s5p-sss.c index 47c568ec2474..4197ad9a711b 100644 --- a/drivers/crypto/s5p-sss.c +++ b/drivers/crypto/s5p-sss.c @@ -30,9 +30,6 @@ #include <crypto/aes.h> #include <crypto/ctr.h> -#include <plat/cpu.h> -#include <mach/dma.h> - #define _SBF(s, v) ((v) << (s)) #define _BIT(b) _SBF(b, 1) |