diff options
author | Ricardo Neri <[email protected]> | 2012-11-06 21:37:14 -0600 |
---|---|---|
committer | Tomi Valkeinen <[email protected]> | 2012-11-07 09:19:54 +0200 |
commit | 3758476501ce6381435f60c03ae31268097e2e91 (patch) | |
tree | 84859409308b9f611652031029ee8405808477e4 | |
parent | 5b30b7fb4dc3d63075090b148a43ad72b797cf87 (diff) |
OMAPDSS: HDMI: Remove __exit macro from hdmi_uninit_display
This function is now used in the driver init path to handle
probe errors properly. Thus, it may be possible to use this function
outside the exit path.
Reported-by: Fengguang Wu <[email protected]>
Reported-by: Yuanhan Liu <[email protected]>
Signed-off-by: Ricardo Neri <[email protected]>
Signed-off-by: Tomi Valkeinen <[email protected]>
-rw-r--r-- | drivers/video/omap2/dss/hdmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c index 0c2f35bd5028..6cf2fe2ac234 100644 --- a/drivers/video/omap2/dss/hdmi.c +++ b/drivers/video/omap2/dss/hdmi.c @@ -365,7 +365,7 @@ static int __init hdmi_init_display(struct omap_dss_device *dssdev) return 0; } -static void __exit hdmi_uninit_display(struct omap_dss_device *dssdev) +static void hdmi_uninit_display(struct omap_dss_device *dssdev) { DSSDBG("uninit_display\n"); |