diff options
Diffstat (limited to 'drivers/media/platform/omap3isp/isp.c')
-rw-r--r-- | drivers/media/platform/omap3isp/isp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/media/platform/omap3isp/isp.c b/drivers/media/platform/omap3isp/isp.c index a9f6de5b69d8..e4aaee91201d 100644 --- a/drivers/media/platform/omap3isp/isp.c +++ b/drivers/media/platform/omap3isp/isp.c | |||
@@ -71,8 +71,6 @@ | |||
71 | #include <media/v4l2-common.h> | 71 | #include <media/v4l2-common.h> |
72 | #include <media/v4l2-device.h> | 72 | #include <media/v4l2-device.h> |
73 | 73 | ||
74 | #include <plat/cpu.h> | ||
75 | |||
76 | #include "isp.h" | 74 | #include "isp.h" |
77 | #include "ispreg.h" | 75 | #include "ispreg.h" |
78 | #include "ispccdc.h" | 76 | #include "ispccdc.h" |
@@ -1992,7 +1990,7 @@ error_csiphy: | |||
1992 | * | 1990 | * |
1993 | * Always returns 0. | 1991 | * Always returns 0. |
1994 | */ | 1992 | */ |
1995 | static int __devexit isp_remove(struct platform_device *pdev) | 1993 | static int isp_remove(struct platform_device *pdev) |
1996 | { | 1994 | { |
1997 | struct isp_device *isp = platform_get_drvdata(pdev); | 1995 | struct isp_device *isp = platform_get_drvdata(pdev); |
1998 | int i; | 1996 | int i; |
@@ -2073,7 +2071,7 @@ static int isp_map_mem_resource(struct platform_device *pdev, | |||
2073 | * -EINVAL if couldn't install ISR, | 2071 | * -EINVAL if couldn't install ISR, |
2074 | * or clk_get return error value. | 2072 | * or clk_get return error value. |
2075 | */ | 2073 | */ |
2076 | static int __devinit isp_probe(struct platform_device *pdev) | 2074 | static int isp_probe(struct platform_device *pdev) |
2077 | { | 2075 | { |
2078 | struct isp_platform_data *pdata = pdev->dev.platform_data; | 2076 | struct isp_platform_data *pdata = pdev->dev.platform_data; |
2079 | struct isp_device *isp; | 2077 | struct isp_device *isp; |
@@ -2252,7 +2250,7 @@ MODULE_DEVICE_TABLE(platform, omap3isp_id_table); | |||
2252 | 2250 | ||
2253 | static struct platform_driver omap3isp_driver = { | 2251 | static struct platform_driver omap3isp_driver = { |
2254 | .probe = isp_probe, | 2252 | .probe = isp_probe, |
2255 | .remove = __devexit_p(isp_remove), | 2253 | .remove = isp_remove, |
2256 | .id_table = omap3isp_id_table, | 2254 | .id_table = omap3isp_id_table, |
2257 | .driver = { | 2255 | .driver = { |
2258 | .owner = THIS_MODULE, | 2256 | .owner = THIS_MODULE, |