
bryan.wu at analog
Mar 26, 2007, 3:14 AM
Post #1 of 1
(437 views)
Permalink
|
|
[PATCH -mm] Blackfin: spi driver fix reboot kernel mounting spi flash print error bug
|
|
Hi folks, This patch fix a printing error bug when reboot kernel mounting on SPI flash. Signed-off-by: Bryan Wu <bryan.wu [at] analog> --- drivers/spi/spi_bfin5xx.c | 9 --------- 1 file changed, 9 deletions(-) Index: linux-2.6/drivers/spi/spi_bfin5xx.c =================================================================== --- linux-2.6.orig/drivers/spi/spi_bfin5xx.c +++ linux-2.6/drivers/spi/spi_bfin5xx.c @@ -1167,14 +1167,6 @@ return 0; } -static void bfin5xx_spi_shutdown(struct platform_device *pdev) -{ - int status = 0; - - if ((status = bfin5xx_spi_remove(pdev)) != 0) - dev_err(&pdev->dev, "shutdown failed with %d\n", status); -} - /* PM, do nothing now */ #ifdef CONFIG_PM static int suspend_devices(struct device *dev, void *pm_message) @@ -1242,7 +1234,6 @@ }, .probe = bfin5xx_spi_probe, .remove = __devexit_p(bfin5xx_spi_remove), - .shutdown = bfin5xx_spi_shutdown, .suspend = bfin5xx_spi_suspend, .resume = bfin5xx_spi_resume, }; _ Thanks, -Bryan Wu - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|