<p dir="ltr">I sent a patch for that already, Chris was cced on it recently by Shawn too. (Sorry for top posting, Android mail client)</p>
<div class="gmail_quote">Dne 9.10.2012 17:39 "Arnd Bergmann" <<a href="mailto:arnd@arndb.de">arnd@arndb.de</a>> napsal(a):<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
>From all I can tell, the patches<br>
<br>
fc108d24 "mmc: mxs-mmc: fix deadlock caused by recursion loop"<br>
829c1bf4 "mmc: spi: Pull out parts shared between MMC and SPI"<br>
<br>
came in through separate branches and cause this build error when<br>
combined.<br>
<br>
drivers/mmc/host/mxs-mmc.c: In function 'mxs_mmc_enable_sdio_irq':<br>
drivers/mmc/host/mxs-mmc.c:527:78: error: 'struct mxs_mmc_host' has no member named 'base'<br>
drivers/mmc/host/mxs-mmc.c:527:95: error: 'struct mxs_mmc_host' has no member named 'devid'<br>
<br>
This does the obvious missing change.<br>
<br>
Signed-off-by: Arnd Bergmann <<a href="mailto:arnd@arndb.de">arnd@arndb.de</a>><br>
Cc: Attila Kinali <<a href="mailto:attila@kinali.ch">attila@kinali.ch</a>><br>
Cc: Lauri Hintsala <<a href="mailto:lauri.hintsala@bluegiga.com">lauri.hintsala@bluegiga.com</a>><br>
Cc: Marek Vasut <<a href="mailto:marex@denx.de">marex@denx.de</a>><br>
Cc: Chris Ball <<a href="mailto:cjb@laptop.org">cjb@laptop.org</a>><br>
Cc: Shawn Guo <<a href="mailto:shawn.guo@linaro.org">shawn.guo@linaro.org</a>><br>
Cc: Mark Brown <<a href="mailto:broonie@opensource.wolfsonmicro.com">broonie@opensource.wolfsonmicro.com</a>><br>
<br>
diff --git a/drivers/mmc/host/mxs-mmc.c b/drivers/mmc/host/mxs-mmc.c<br>
index bb4c2bf..80d1e6d 100644<br>
--- a/drivers/mmc/host/mxs-mmc.c<br>
+++ b/drivers/mmc/host/mxs-mmc.c<br>
@@ -525,7 +525,7 @@ static void mxs_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)<br>
                writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,<br>
                       ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_SET);<br>
                writel(BM_SSP_CTRL1_SDIO_IRQ_EN,<br>
-                      host->base + HW_SSP_CTRL1(host) + STMP_OFFSET_REG_SET);<br>
+                      ssp->base + HW_SSP_CTRL1(ssp) + STMP_OFFSET_REG_SET);<br>
        } else {<br>
                writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,<br>
                       ssp->base + HW_SSP_CTRL0 + STMP_OFFSET_REG_CLR);<br>
<br>
_______________________________________________<br>
linux-arm-kernel mailing list<br>
<a href="mailto:linux-arm-kernel@lists.infradead.org">linux-arm-kernel@lists.infradead.org</a><br>
<a href="http://lists.infradead.org/mailman/listinfo/linux-arm-kernel" target="_blank">http://lists.infradead.org/mailman/listinfo/linux-arm-kernel</a><br>
</blockquote></div>