summaryrefslogtreecommitdiff
path: root/drivers/staging/fsl-mc/bus/dprc-driver.c
diff options
context:
space:
mode:
authorStuart Yoder <stuart.yoder@nxp.com>2016-08-23 22:14:23 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-01 15:57:26 (GMT)
commitd4e75132bde743780084690b34da875b4402bd63 (patch)
tree1c7c604f2ad78bd63a5dfe7b1c28df562bc32857 /drivers/staging/fsl-mc/bus/dprc-driver.c
parent5143ecf6db0a97b5d5028c0e9ac3a430b51ebb13 (diff)
downloadlinux-d4e75132bde743780084690b34da875b4402bd63.tar.xz
staging: fsl-mc: make order of includes consistent
There are 3 kinds of headers included in the bus driver components-- misc linux/include files, public bus driver includes, and includes private to the bus driver. Cleanup the order and formatting of includes in the bus driver to be consistent: #include <linux/include/[file].h> #include ../include/[file].h // public bus driver includes (eventually // destined for: linux/include/fsl) [blank line] #include "[file].h" // private bus driver includes Signed-off-by: Stuart Yoder <stuart.yoder@nxp.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/fsl-mc/bus/dprc-driver.c')
-rw-r--r--drivers/staging/fsl-mc/bus/dprc-driver.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/staging/fsl-mc/bus/dprc-driver.c b/drivers/staging/fsl-mc/bus/dprc-driver.c
index 5e34720..c5ee463 100644
--- a/drivers/staging/fsl-mc/bus/dprc-driver.c
+++ b/drivers/staging/fsl-mc/bus/dprc-driver.c
@@ -9,12 +9,13 @@
* warranty of any kind, whether express or implied.
*/
-#include "../include/mc-bus.h"
-#include "../include/mc-sys.h"
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/msi.h>
+#include "../include/mc-bus.h"
+#include "../include/mc-sys.h"
+
#include "dprc-cmd.h"
#include "fsl-mc-private.h"