diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2018-06-01 05:30:56 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-06-01 07:16:24 -0400 |
commit | 8a10ef4e60ff7f2746cba5d6ce20a0d012614e91 (patch) | |
tree | 6a3fbafbbcdb86be57c844ada4caa8bc94bb941c | |
parent | 53364c7ba4b25d6e3f428605254c50d5dfaaa430 (diff) |
staging: mt7621-gpio: reorder includes alphabetically
This commit reviews driver includes reordering them in
alphabetic order. This improves readability.
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Reviewed-by: NeilBrown <neil@brown.name>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/mt7621-gpio/gpio-mt7621.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/mt7621-gpio/gpio-mt7621.c b/drivers/staging/mt7621-gpio/gpio-mt7621.c index 3192fc8616b6..0c4fb4a1b4a9 100644 --- a/drivers/staging/mt7621-gpio/gpio-mt7621.c +++ b/drivers/staging/mt7621-gpio/gpio-mt7621.c | |||
@@ -4,16 +4,16 @@ | |||
4 | * Copyright (C) 2013 John Crispin <blogic@openwrt.org> | 4 | * Copyright (C) 2013 John Crispin <blogic@openwrt.org> |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <linux/io.h> | ||
8 | #include <linux/err.h> | 7 | #include <linux/err.h> |
9 | #include <linux/gpio.h> | 8 | #include <linux/gpio.h> |
10 | #include <linux/gpio/driver.h> | 9 | #include <linux/gpio/driver.h> |
10 | #include <linux/interrupt.h> | ||
11 | #include <linux/io.h> | ||
12 | #include <linux/irqdomain.h> | ||
11 | #include <linux/module.h> | 13 | #include <linux/module.h> |
12 | #include <linux/of_irq.h> | 14 | #include <linux/of_irq.h> |
13 | #include <linux/spinlock.h> | ||
14 | #include <linux/irqdomain.h> | ||
15 | #include <linux/interrupt.h> | ||
16 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
16 | #include <linux/spinlock.h> | ||
17 | 17 | ||
18 | #define MTK_BANK_CNT 3 | 18 | #define MTK_BANK_CNT 3 |
19 | #define MTK_BANK_WIDTH 32 | 19 | #define MTK_BANK_WIDTH 32 |