mirror of https://gitee.com/openkylin/linux.git
drm/exynos/hdmi: unregister connector on removal
During component removal driver should unregister connector. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
This commit is contained in:
parent
7c61b1ecab
commit
ad279310d7
|
@ -1040,6 +1040,8 @@ static enum drm_connector_status hdmi_detect(struct drm_connector *connector,
|
||||||
|
|
||||||
static void hdmi_connector_destroy(struct drm_connector *connector)
|
static void hdmi_connector_destroy(struct drm_connector *connector)
|
||||||
{
|
{
|
||||||
|
drm_connector_unregister(connector);
|
||||||
|
drm_connector_cleanup(connector);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct drm_connector_funcs hdmi_connector_funcs = {
|
static struct drm_connector_funcs hdmi_connector_funcs = {
|
||||||
|
@ -2314,8 +2316,8 @@ static void hdmi_unbind(struct device *dev, struct device *master, void *data)
|
||||||
struct drm_encoder *encoder = display->encoder;
|
struct drm_encoder *encoder = display->encoder;
|
||||||
struct hdmi_context *hdata = display->ctx;
|
struct hdmi_context *hdata = display->ctx;
|
||||||
|
|
||||||
|
hdmi_connector_destroy(&hdata->connector);
|
||||||
encoder->funcs->destroy(encoder);
|
encoder->funcs->destroy(encoder);
|
||||||
drm_connector_cleanup(&hdata->connector);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct component_ops hdmi_component_ops = {
|
static const struct component_ops hdmi_component_ops = {
|
||||||
|
|
Loading…
Reference in New Issue