diff options
author | Christian Lütke-Stetzkamp <christian@lkamp.de> | 2018-04-29 20:32:42 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-07 05:08:07 +0300 |
commit | f18898631a7f829a92f82045fa018b7c4640689a (patch) | |
tree | f70fb146d4a79f3cfccce796828563db12a2e909 /drivers/staging/mt7621-mmc | |
parent | 47b7bae6948aec7133a71771ea3896cdffaeb91d (diff) | |
download | linux-f18898631a7f829a92f82045fa018b7c4640689a.tar.xz |
staging: mt7621-mmc: Cleanup includes
This commit cleans the includes in the sd.c file. Those which are not
needed are removed, the remaining ones are sorted alphabetically.
Signed-off-by: Christian Lütke-Stetzkamp <christian@lkamp.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/mt7621-mmc')
-rw-r--r-- | drivers/staging/mt7621-mmc/sd.c | 51 |
1 files changed, 8 insertions, 43 deletions
diff --git a/drivers/staging/mt7621-mmc/sd.c b/drivers/staging/mt7621-mmc/sd.c index 2da079238966..d92234a96551 100644 --- a/drivers/staging/mt7621-mmc/sd.c +++ b/drivers/staging/mt7621-mmc/sd.c @@ -34,31 +34,21 @@ */ #include <linux/module.h> -#include <linux/moduleparam.h> -#include <linux/init.h> +#include <linux/delay.h> +#include <linux/dma-mapping.h> #include <linux/spinlock.h> -#include <linux/timer.h> -#include <linux/ioport.h> -#include <linux/device.h> #include <linux/platform_device.h> -#include <linux/interrupt.h> -#include <linux/delay.h> -#include <linux/blkdev.h> -#include <linux/slab.h> + #include <linux/mmc/host.h> -#include <linux/mmc/card.h> -#include <linux/mmc/core.h> #include <linux/mmc/mmc.h> #include <linux/mmc/sd.h> #include <linux/mmc/sdio.h> -#include <linux/dma-mapping.h> -/* +++ by chhung */ -#include <linux/types.h> -#include <linux/kernel.h> -#include <linux/version.h> -#include <linux/pm.h> -#include <linux/of.h> +#include <asm/mach-ralink/ralink_regs.h> + +#include "board.h" +#include "dbg.h" +#include "mt6575_sd.h" //#define IRQ_SDC 14 //MT7620 /*FIXME*/ #ifdef CONFIG_SOC_MT7621 @@ -70,31 +60,6 @@ #endif #define IRQ_SDC 22 /*FIXME*/ -#include <asm/dma.h> -/* end of +++ */ - -#include <asm/mach-ralink/ralink_regs.h> - -#if 0 /* --- by chhung */ -#include <mach/board.h> -#include <mach/mt6575_devs.h> -#include <mach/mt6575_typedefs.h> -#include <mach/mt6575_clock_manager.h> -#include <mach/mt6575_pm_ldo.h> -//#include <mach/mt6575_pll.h> -//#include <mach/mt6575_gpio.h> -//#include <mach/mt6575_gpt_sw.h> -#include <asm/tcm.h> -// #include <mach/mt6575_gpt.h> -#endif /* end of --- */ - -#include "mt6575_sd.h" -#include "dbg.h" - -/* +++ by chhung */ -#include "board.h" -/* end of +++ */ - #if 0 /* --- by chhung */ #define isb() __asm__ __volatile__ ("" : : : "memory") #define dsb() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 4" \ |