diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2016-07-06 05:50:13 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-07-22 09:30:40 -0400 |
commit | 3cabe87b552e9e8561e4b73f96ae6a887126ec61 (patch) | |
tree | da41c22f908910e8ef912c87199d7ec18c7d2f56 | |
parent | 3dbd3212f81b2b410a34a922055e2da792864829 (diff) |
gpio: intel-mid: Sort header block alphabetically
Sort the header inclusion lines by alphabetical order.
While here, update Intel Copyright.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-intel-mid.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/gpio/gpio-intel-mid.c b/drivers/gpio/gpio-intel-mid.c index c0f7cce23f62..164de64b11fc 100644 --- a/drivers/gpio/gpio-intel-mid.c +++ b/drivers/gpio/gpio-intel-mid.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Intel MID GPIO driver | 2 | * Intel MID GPIO driver |
3 | * | 3 | * |
4 | * Copyright (c) 2008-2014 Intel Corporation. | 4 | * Copyright (c) 2008-2014,2016 Intel Corporation. |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
@@ -19,18 +19,18 @@ | |||
19 | * Clovertrail platform Cloverview chip. | 19 | * Clovertrail platform Cloverview chip. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/pci.h> | ||
24 | #include <linux/platform_device.h> | ||
25 | #include <linux/kernel.h> | ||
26 | #include <linux/delay.h> | 22 | #include <linux/delay.h> |
27 | #include <linux/stddef.h> | ||
28 | #include <linux/interrupt.h> | ||
29 | #include <linux/init.h> | 23 | #include <linux/init.h> |
24 | #include <linux/interrupt.h> | ||
30 | #include <linux/io.h> | 25 | #include <linux/io.h> |
31 | #include <linux/gpio/driver.h> | 26 | #include <linux/gpio/driver.h> |
32 | #include <linux/slab.h> | 27 | #include <linux/kernel.h> |
28 | #include <linux/module.h> | ||
29 | #include <linux/pci.h> | ||
30 | #include <linux/platform_device.h> | ||
33 | #include <linux/pm_runtime.h> | 31 | #include <linux/pm_runtime.h> |
32 | #include <linux/slab.h> | ||
33 | #include <linux/stddef.h> | ||
34 | 34 | ||
35 | #define INTEL_MID_IRQ_TYPE_EDGE (1 << 0) | 35 | #define INTEL_MID_IRQ_TYPE_EDGE (1 << 0) |
36 | #define INTEL_MID_IRQ_TYPE_LEVEL (1 << 1) | 36 | #define INTEL_MID_IRQ_TYPE_LEVEL (1 << 1) |