Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec17a7f2 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mark Brown
Browse files

spi: omap-uwire: Fix build error



Fixes the following build error introduced by commit b3f6a575
("spi: omap-uwire: use devm_ functions"):
drivers/spi/spi-omap-uwire.c:465:2: error: implicit declaration of function ‘devm_ioremap’

Since we are including <linux/io.h>, <asm/io.h> is no longer
needed. Remove it.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 1820a8fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,10 +46,10 @@
#include <linux/spi/spi.h>
#include <linux/spi/spi_bitbang.h>
#include <linux/module.h>
#include <linux/io.h>

#include <asm/irq.h>
#include <mach/hardware.h>
#include <asm/io.h>
#include <asm/mach-types.h>

#include <mach/mux.h>