diff options
Diffstat (limited to 'drivers/media/platform/omap3isp/isp.c')
-rw-r--r-- | drivers/media/platform/omap3isp/isp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/platform/omap3isp/isp.c b/drivers/media/platform/omap3isp/isp.c index 2e8c0cb79c3d..e4aaee91201d 100644 --- a/drivers/media/platform/omap3isp/isp.c +++ b/drivers/media/platform/omap3isp/isp.c | |||
@@ -1990,7 +1990,7 @@ error_csiphy: | |||
1990 | * | 1990 | * |
1991 | * Always returns 0. | 1991 | * Always returns 0. |
1992 | */ | 1992 | */ |
1993 | static int __devexit isp_remove(struct platform_device *pdev) | 1993 | static int isp_remove(struct platform_device *pdev) |
1994 | { | 1994 | { |
1995 | struct isp_device *isp = platform_get_drvdata(pdev); | 1995 | struct isp_device *isp = platform_get_drvdata(pdev); |
1996 | int i; | 1996 | int i; |
@@ -2071,7 +2071,7 @@ static int isp_map_mem_resource(struct platform_device *pdev, | |||
2071 | * -EINVAL if couldn't install ISR, | 2071 | * -EINVAL if couldn't install ISR, |
2072 | * or clk_get return error value. | 2072 | * or clk_get return error value. |
2073 | */ | 2073 | */ |
2074 | static int __devinit isp_probe(struct platform_device *pdev) | 2074 | static int isp_probe(struct platform_device *pdev) |
2075 | { | 2075 | { |
2076 | struct isp_platform_data *pdata = pdev->dev.platform_data; | 2076 | struct isp_platform_data *pdata = pdev->dev.platform_data; |
2077 | struct isp_device *isp; | 2077 | struct isp_device *isp; |
@@ -2250,7 +2250,7 @@ MODULE_DEVICE_TABLE(platform, omap3isp_id_table); | |||
2250 | 2250 | ||
2251 | static struct platform_driver omap3isp_driver = { | 2251 | static struct platform_driver omap3isp_driver = { |
2252 | .probe = isp_probe, | 2252 | .probe = isp_probe, |
2253 | .remove = __devexit_p(isp_remove), | 2253 | .remove = isp_remove, |
2254 | .id_table = omap3isp_id_table, | 2254 | .id_table = omap3isp_id_table, |
2255 | .driver = { | 2255 | .driver = { |
2256 | .owner = THIS_MODULE, | 2256 | .owner = THIS_MODULE, |