From 56e50c573421020690170b273aefa50cb597776a Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Tue, 11 Aug 2009 18:57:04 +0000 Subject: [PATCH] [brcm63xx] fix typo, INT_MASK is writable, INT_STATUS is not SVN-Revision: 17229 --- target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c b/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c index a53eb18197..a20de302d2 100644 --- a/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c +++ b/target/linux/brcm63xx/files/drivers/spi/bcm63xx_spi.c @@ -237,7 +237,7 @@ static irqreturn_t bcm63xx_spi_interrupt(int irq, void *dev_id) /* Read interupts and clear them immediately */ intr = bcm_spi_readb(bs->regs, SPI_INT_STATUS); - bcm_spi_writeb(SPI_INTR_CLEAR_ALL, bs->regs, SPI_INT_STATUS); + bcm_spi_writeb(SPI_INTR_CLEAR_ALL, bs->regs, SPI_INT_MASK); /* A tansfer completed */ if (intr & SPI_INTR_CMD_DONE) { -- 2.30.2