From: Stefan Roese Date: Fri, 1 Feb 2019 10:17:08 +0000 (+0100) Subject: staging: spi: mt7621: Clean up excessive header usage X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=dab7ed43dfc778f6924d13b63ddd11a966f4cd77;p=openwrt%2Fstaging%2Fblogic.git staging: spi: mt7621: Clean up excessive header usage This patch removes unnecessary header includes and sorts the remaining ones alphabetically. Signed-off-by: Stefan Roese Cc: Mark Brown Cc: Sankalp Negi Cc: Chuanhong Guo Cc: John Crispin Reviewed-by: NeilBrown Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/mt7621-spi/spi-mt7621.c b/drivers/staging/mt7621-spi/spi-mt7621.c index c2f6f9ce52a2..440c3f77fde8 100644 --- a/drivers/staging/mt7621-spi/spi-mt7621.c +++ b/drivers/staging/mt7621-spi/spi-mt7621.c @@ -11,19 +11,13 @@ * Copyright (C) 2007-2008 Marvell Ltd. */ -#include -#include #include -#include #include #include +#include +#include #include #include -#include -#include -#include - -#include #define SPI_BPW_MASK(bits) BIT((bits) - 1)