Message ID | 1407686191-87706-1-git-send-email-manuel.lauss@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 61a2381c7b28255b1b76405827da47104a3913a0 |
Headers | show |
diff --git a/drivers/spi/spi-au1550.c b/drivers/spi/spi-au1550.c index 40c3d43..f40b34c 100644 --- a/drivers/spi/spi-au1550.c +++ b/drivers/spi/spi-au1550.c @@ -945,7 +945,7 @@ static int au1550_spi_remove(struct platform_device *pdev) spi_bitbang_stop(&hw->bitbang); free_irq(hw->irq, hw); iounmap((void __iomem *)hw->regs); - release_mem_region(r->start, sizeof(psc_spi_t)); + release_mem_region(hw->ioarea->start, sizeof(psc_spi_t)); if (hw->usedma) { au1550_spi_dma_rxtmp_free(hw);
Commit 30670539b867d08c1931abd4815699de5887ee58 (spi: au1550: Fix bug in deallocation of memory) replaced working lines of code with an obvious and untested copy-paste leading to a build failure. This patch fixes the "bugfix". Cc: Himangi Saraogi <himangi774@gmail.com> Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> --- drivers/spi/spi-au1550.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)