aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio Paracuellos <[email protected]>2018-08-03 10:27:02 +0200
committerGreg Kroah-Hartman <[email protected]>2018-08-08 14:08:41 +0200
commitcd7d07db8b83cfc88d4ee3a1d5f751cf6af58f13 (patch)
tree4eaecee1cec24590293d5834c2958c0fb845ac94
parente38bb1754003d9a0fba5b59f23c850615664cbe6 (diff)
staging: mt7621-pci: review includes putting them in alphabethic order
There are some includes that are being used that are not really needed to correct driver compilation. Remove them and reorder the rest alphabetically. Signed-off-by: Sergio Paracuellos <[email protected]> Tested-by: NeilBrown <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/mt7621-pci/pci-mt7621.c22
1 files changed, 8 insertions, 14 deletions
diff --git a/drivers/staging/mt7621-pci/pci-mt7621.c b/drivers/staging/mt7621-pci/pci-mt7621.c
index e1245a4297dc..4a20138fb91a 100644
--- a/drivers/staging/mt7621-pci/pci-mt7621.c
+++ b/drivers/staging/mt7621-pci/pci-mt7621.c
@@ -40,26 +40,20 @@
**************************************************************************
*/
-#include <linux/types.h>
-#include <linux/pci.h>
-#include <linux/kernel.h>
-#include <linux/slab.h>
-#include <linux/version.h>
-#include <linux/pci.h>
-#include <linux/io.h>
-#include <asm/mips-cm.h>
-#include <linux/init.h>
-#include <linux/module.h>
+#include <linux/bitops.h>
+#include <linux/clk.h>
#include <linux/delay.h>
+#include <linux/module.h>
#include <linux/of.h>
-#include <linux/of_pci.h>
-#include <linux/of_platform.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
+#include <linux/of_pci.h>
+#include <linux/of_platform.h>
+#include <linux/pci.h>
#include <linux/platform_device.h>
-
-#include <ralink_regs.h>
+#include <linux/reset.h>
#include <mt7621.h>
+#include <ralink_regs.h>
#include "../../pci/pci.h"