Messages in this thread Patch in this message |  | | | From | Bryan Wu <> | | Subject | [PATCH 03/20] Blackfin SPI Driver: remove useless <asm/cplbinit.h> | | Date | Fri, 6 Feb 2009 15:12:51 +0800 |
| |
From: Mike Frysinger <vapier.adi@gmail.com>
We already moved bfin_addr_dcachable() and friends into the cacheflush header where it belongs, so don't need to include <asm/cplbinit.h> here.
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org> Acked-by: David Brownell <dbrownell@users.sourceforge.net> --- drivers/spi/spi_bfin5xx.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c index f2e18f7..1e046b1 100644 --- a/drivers/spi/spi_bfin5xx.c +++ b/drivers/spi/spi_bfin5xx.c @@ -25,9 +25,6 @@ #include <asm/dma.h> #include <asm/portmux.h> #include <asm/bfin5xx_spi.h> - -/* reserved_mem_dcache_on and cache friends */ -#include <asm/cplbinit.h> #include <asm/cacheflush.h> #define DRV_NAME "bfin-spi" -- 1.5.6.3
|  |