From: Bo Shen Date: Wed, 5 Dec 2012 22:22:17 +0000 (+0000) Subject: spi: atmel: sam9m10g45 also support WDRBT bit X-Git-Tag: v2013.01~9^2~11^2 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=ac81e1ccf7135d8004763bbf9bef1d95a03fbe92 spi: atmel: sam9m10g45 also support WDRBT bit The at91sam9m10g45 also support WDRBT bit, add support for it Signed-off-by: Bo Shen Signed-off-by: Andreas Bießmann --- diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index c7a51f7f39..ce7d460855 100644 --- a/drivers/spi/atmel_spi.c +++ b/drivers/spi/atmel_spi.c @@ -92,7 +92,7 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, as->slave.cs = cs; as->regs = regs; as->mr = ATMEL_SPI_MR_MSTR | ATMEL_SPI_MR_MODFDIS -#if defined(CONFIG_AT91SAM9X5) +#if defined(CONFIG_AT91SAM9X5) || defined(CONFIG_AT91SAM9M10G45) | ATMEL_SPI_MR_WDRBT #endif | ATMEL_SPI_MR_PCS(~(1 << cs) & 0xf);