The patch titled s3c24xx: fix spi driver with CONFIG_PM has been removed from the -mm tree. Its filename is s3c24xx-fix-spi-driver-with-config_pm.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: s3c24xx: fix spi driver with CONFIG_PM From: Ben Dooks <ben-linux@xxxxxxxxx> Fix compile bug with the S3C24XX SPI driver when CONFIG_PM is set. Signed-off-by: Ben Dooks <ben-linux@xxxxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/spi/spi_s3c24xx.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/spi/spi_s3c24xx.c~s3c24xx-fix-spi-driver-with-config_pm drivers/spi/spi_s3c24xx.c --- devel/drivers/spi/spi_s3c24xx.c~s3c24xx-fix-spi-driver-with-config_pm 2006-05-25 18:44:06.000000000 -0700 +++ devel-akpm/drivers/spi/spi_s3c24xx.c 2006-05-25 18:44:06.000000000 -0700 @@ -405,7 +405,7 @@ static int s3c24xx_spi_remove(struct pla static int s3c24xx_spi_suspend(struct platform_device *pdev, pm_message_t msg) { - struct s3c24xx_spi *hw = platform_get_drvdata(dev); + struct s3c24xx_spi *hw = platform_get_drvdata(pdev); clk_disable(hw->clk); return 0; @@ -413,7 +413,7 @@ static int s3c24xx_spi_suspend(struct pl static int s3c24xx_spi_resume(struct platform_device *pdev) { - struct s3c24xx_spi *hw = platform_get_drvdata(dev); + struct s3c24xx_spi *hw = platform_get_drvdata(pdev); clk_enable(hw->clk); return 0; _ Patches currently in -mm which might be from ben-linux@xxxxxxxxx are origin.patch git-mtd.patch ax88796-parallel-port-driver.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html