aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2016-03-21 21:58:25 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2016-04-05 08:35:46 -0400
commit3cf9d84eb84abb4c186cd793d8720437a2ee2b1a (patch)
treeb4c84084622cdd52fd485ceed26015be752c52e5
parent9e4a1100a445671dd55ff74dce859221cc1464fa (diff)
crypto: s5p-sss - Sort the headers to improve readability
Sort the headers alphabetically to improve readability and to spot duplications easier. Suggested-by: Vladimir Zapolskiy <vz@mleia.com> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Acked-by: Vladimir Zapolskiy <vz@mleia.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--drivers/crypto/s5p-sss.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/crypto/s5p-sss.c b/drivers/crypto/s5p-sss.c
index 3730fb0af4d8..4f6d5b3ec418 100644
--- a/drivers/crypto/s5p-sss.c
+++ b/drivers/crypto/s5p-sss.c
@@ -11,23 +11,23 @@
11 * 11 *
12 */ 12 */
13 13
14#include <linux/clk.h>
15#include <linux/crypto.h>
16#include <linux/dma-mapping.h>
14#include <linux/err.h> 17#include <linux/err.h>
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/errno.h> 18#include <linux/errno.h>
19#include <linux/init.h>
20#include <linux/interrupt.h>
21#include <linux/io.h>
18#include <linux/kernel.h> 22#include <linux/kernel.h>
19#include <linux/clk.h> 23#include <linux/module.h>
24#include <linux/of.h>
20#include <linux/platform_device.h> 25#include <linux/platform_device.h>
21#include <linux/scatterlist.h> 26#include <linux/scatterlist.h>
22#include <linux/dma-mapping.h>
23#include <linux/io.h>
24#include <linux/of.h>
25#include <linux/crypto.h>
26#include <linux/interrupt.h>
27 27
28#include <crypto/algapi.h>
29#include <crypto/aes.h>
30#include <crypto/ctr.h> 28#include <crypto/ctr.h>
29#include <crypto/aes.h>
30#include <crypto/algapi.h>
31#include <crypto/scatterwalk.h> 31#include <crypto/scatterwalk.h>
32 32
33#define _SBF(s, v) ((v) << (s)) 33#define _SBF(s, v) ((v) << (s))