Commit 14e4d784 authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAP: DSS2: use __exit for selected panel drivers

We can use __exit for the driver remove function in plain dss panels
(ie. those that do not need i2c or spi).
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 06b2b0d5
...@@ -286,7 +286,7 @@ static int generic_dpi_panel_probe(struct omap_dss_device *dssdev) ...@@ -286,7 +286,7 @@ static int generic_dpi_panel_probe(struct omap_dss_device *dssdev)
return 0; return 0;
} }
static void generic_dpi_panel_remove(struct omap_dss_device *dssdev) static void __exit generic_dpi_panel_remove(struct omap_dss_device *dssdev)
{ {
struct panel_drv_data *drv_data = dev_get_drvdata(&dssdev->dev); struct panel_drv_data *drv_data = dev_get_drvdata(&dssdev->dev);
...@@ -359,7 +359,7 @@ static int generic_dpi_panel_check_timings(struct omap_dss_device *dssdev, ...@@ -359,7 +359,7 @@ static int generic_dpi_panel_check_timings(struct omap_dss_device *dssdev,
static struct omap_dss_driver dpi_driver = { static struct omap_dss_driver dpi_driver = {
.probe = generic_dpi_panel_probe, .probe = generic_dpi_panel_probe,
.remove = generic_dpi_panel_remove, .remove = __exit_p(generic_dpi_panel_remove),
.enable = generic_dpi_panel_enable, .enable = generic_dpi_panel_enable,
.disable = generic_dpi_panel_disable, .disable = generic_dpi_panel_disable,
......
...@@ -120,7 +120,7 @@ static int sharp_ls_panel_probe(struct omap_dss_device *dssdev) ...@@ -120,7 +120,7 @@ static int sharp_ls_panel_probe(struct omap_dss_device *dssdev)
return 0; return 0;
} }
static void sharp_ls_panel_remove(struct omap_dss_device *dssdev) static void __exit sharp_ls_panel_remove(struct omap_dss_device *dssdev)
{ {
struct sharp_data *sd = dev_get_drvdata(&dssdev->dev); struct sharp_data *sd = dev_get_drvdata(&dssdev->dev);
struct backlight_device *bl = sd->bl; struct backlight_device *bl = sd->bl;
...@@ -205,7 +205,7 @@ static int sharp_ls_panel_resume(struct omap_dss_device *dssdev) ...@@ -205,7 +205,7 @@ static int sharp_ls_panel_resume(struct omap_dss_device *dssdev)
static struct omap_dss_driver sharp_ls_driver = { static struct omap_dss_driver sharp_ls_driver = {
.probe = sharp_ls_panel_probe, .probe = sharp_ls_panel_probe,
.remove = sharp_ls_panel_remove, .remove = __exit_p(sharp_ls_panel_remove),
.enable = sharp_ls_panel_enable, .enable = sharp_ls_panel_enable,
.disable = sharp_ls_panel_disable, .disable = sharp_ls_panel_disable,
......
...@@ -819,7 +819,7 @@ static int taal_probe(struct omap_dss_device *dssdev) ...@@ -819,7 +819,7 @@ static int taal_probe(struct omap_dss_device *dssdev)
return r; return r;
} }
static void taal_remove(struct omap_dss_device *dssdev) static void __exit taal_remove(struct omap_dss_device *dssdev)
{ {
struct taal_data *td = dev_get_drvdata(&dssdev->dev); struct taal_data *td = dev_get_drvdata(&dssdev->dev);
struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev); struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
...@@ -1557,7 +1557,7 @@ static enum omap_dss_update_mode taal_get_update_mode( ...@@ -1557,7 +1557,7 @@ static enum omap_dss_update_mode taal_get_update_mode(
static struct omap_dss_driver taal_driver = { static struct omap_dss_driver taal_driver = {
.probe = taal_probe, .probe = taal_probe,
.remove = taal_remove, .remove = __exit_p(taal_remove),
.enable = taal_enable, .enable = taal_enable,
.disable = taal_disable, .disable = taal_disable,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment