diff options
author | Shawn Lin <shawn.lin@rock-chips.com> | 2016-03-10 01:51:48 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-03-10 03:06:53 -0500 |
commit | ec5c5d8ac028cfec4c7c976d93bed1734f1a670a (patch) | |
tree | 007ee62ef4905e52ad3c9277b41731a3de7bb55a | |
parent | 61cadcf46cfdb9f7eec70527968c2b91e9823786 (diff) |
spi: rockchip: header file cleanup
Remove some of unused header files and reoder
it into alphabetical order.
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-rockchip.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/drivers/spi/spi-rockchip.c b/drivers/spi/spi-rockchip.c index 795fd191faa7..1b54f2f18021 100644 --- a/drivers/spi/spi-rockchip.c +++ b/drivers/spi/spi-rockchip.c | |||
@@ -13,20 +13,14 @@ | |||
13 | * | 13 | * |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/module.h> | ||
18 | #include <linux/clk.h> | 16 | #include <linux/clk.h> |
19 | #include <linux/err.h> | 17 | #include <linux/dmaengine.h> |
20 | #include <linux/delay.h> | 18 | #include <linux/module.h> |
21 | #include <linux/interrupt.h> | 19 | #include <linux/of.h> |
22 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
23 | #include <linux/slab.h> | ||
24 | #include <linux/spi/spi.h> | 21 | #include <linux/spi/spi.h> |
25 | #include <linux/scatterlist.h> | ||
26 | #include <linux/of.h> | ||
27 | #include <linux/pm_runtime.h> | 22 | #include <linux/pm_runtime.h> |
28 | #include <linux/io.h> | 23 | #include <linux/scatterlist.h> |
29 | #include <linux/dmaengine.h> | ||
30 | 24 | ||
31 | #define DRIVER_NAME "rockchip-spi" | 25 | #define DRIVER_NAME "rockchip-spi" |
32 | 26 | ||