diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2018-06-01 11:30:56 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-06-01 13:16:24 +0200 |
commit | 8a10ef4e60ff7f2746cba5d6ce20a0d012614e91 (patch) | |
tree | 6a3fbafbbcdb86be57c844ada4caa8bc94bb941c /drivers/staging/mt7621-gpio | |
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>
Diffstat (limited to 'drivers/staging/mt7621-gpio')
-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 @@ * Copyright (C) 2013 John Crispin <blogic@openwrt.org> */ -#include <linux/io.h> #include <linux/err.h> #include <linux/gpio.h> #include <linux/gpio/driver.h> +#include <linux/interrupt.h> +#include <linux/io.h> +#include <linux/irqdomain.h> #include <linux/module.h> #include <linux/of_irq.h> -#include <linux/spinlock.h> -#include <linux/irqdomain.h> -#include <linux/interrupt.h> #include <linux/platform_device.h> +#include <linux/spinlock.h> #define MTK_BANK_CNT 3 #define MTK_BANK_WIDTH 32 |