From: Uwe Kleine-K. <u.k...@pe...> - 2009-11-24 21:08:49
|
The function mipid_spi_remove is used only wrapped by __devexit_p so define it using __devexit. Signed-off-by: Uwe Kleine-König <u.k...@pe...> Cc: Arnaud Patard <arn...@rt...> Cc: Andrew Morton <ak...@li...> Cc: Mike Wege <ext...@no...> Cc: Imre Deak <imr...@so...> Cc: Hiroshi DOYU <Hir...@no...> Cc: lin...@vg... Cc: Imre Deak <imr...@no...> Cc: lin...@li... Cc: lin...@vg... --- drivers/video/omap/lcd_mipid.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/video/omap/lcd_mipid.c b/drivers/video/omap/lcd_mipid.c index 918ee89..24889ca 100644 --- a/drivers/video/omap/lcd_mipid.c +++ b/drivers/video/omap/lcd_mipid.c @@ -587,7 +587,7 @@ static int mipid_spi_probe(struct spi_device *spi) return 0; } -static int mipid_spi_remove(struct spi_device *spi) +static int __devexit mipid_spi_remove(struct spi_device *spi) { struct mipid_device *md = dev_get_drvdata(&spi->dev); -- 1.6.5.2 |