9
0
Fork 0

mxs_spi: fix compile error

this fix :
drivers/spi/mxs_spi.c:29:22: fatal error: mach/mxs.h: No such file or directory
and
drivers/spi/mxs_spi.c: In function 'mxs_spi_setup':
drivers/spi/mxs_spi.c:102:2: error: too few arguments to function 'stmp_reset_block'
include/stmp-device.h:21:12: note: declared here

only compile tested ATM

Signed-off-by: Eric Bénard <eric@eukrea.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Eric Bénard 2013-09-09 22:00:25 +02:00 committed by Sascha Hauer
parent 9d2745425e
commit 524d2c81a0
1 changed files with 1 additions and 2 deletions

View File

@ -26,7 +26,6 @@
#include <asm/mmu.h>
#include <mach/generic.h>
#include <mach/imx-regs.h>
#include <mach/mxs.h>
#include <mach/clock.h>
#include <mach/ssp.h>
@ -100,7 +99,7 @@ static int mxs_spi_setup(struct spi_device *spi)
return -EINVAL;
}
stmp_reset_block(mxs->regs + HW_SSP_CTRL0);
stmp_reset_block(mxs->regs + HW_SSP_CTRL0, 0);
val |= SSP_CTRL0_SSP_ASSERT_OUT(spi->chip_select);
val |= SSP_CTRL0_BUS_WIDTH(0);