aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-10-07 14:51:59 +0100
committerMark Brown <broonie@linaro.org>2013-10-07 14:51:59 +0100
commit896182ad319542e56dcf776565f92cb35c2b4abb (patch)
tree8316c3d1de4600908461a6c246c410b9c4502264
parentb242954b3cb8cb710a5c72fdd509f659748f6973 (diff)
parent269e4a4122685d0739f0e8e53b440111bf8a03f9 (diff)
downloadmfd-next-896182ad319542e56dcf776565f92cb35c2b4abb.tar.gz
Merge remote-tracking branch 'spi/fix/pxa' into spi-linus
-rw-r--r--drivers/spi/spi-pxa2xx.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c
index 2eb06ee0b32640..c1a50674c1e359 100644
--- a/drivers/spi/spi-pxa2xx.c
+++ b/drivers/spi/spi-pxa2xx.c
@@ -546,8 +546,17 @@ static irqreturn_t ssp_int(int irq, void *dev_id)
if (pm_runtime_suspended(&drv_data->pdev->dev))
return IRQ_NONE;
- sccr1_reg = read_SSCR1(reg);
+ /*
+ * If the device is not yet in RPM suspended state and we get an
+ * interrupt that is meant for another device, check if status bits
+ * are all set to one. That means that the device is already
+ * powered off.
+ */
status = read_SSSR(reg);
+ if (status == ~0)
+ return IRQ_NONE;
+
+ sccr1_reg = read_SSCR1(reg);
/* Ignore possible writes if we don't need to write */
if (!(sccr1_reg & SSCR1_TIE))