From: Jyri Sarha Date: Wed, 13 Apr 2016 16:00:51 +0000 (+0300) Subject: drm/tilcdc: tfp410: Add atomic modeset helpers to connector funcs X-Git-Tag: v4.9-rc1~41^2~44^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=018cfbde63a4b1cb7ca4cb0c0b1d4286f7708236;p=karo-tx-linux.git drm/tilcdc: tfp410: Add atomic modeset helpers to connector funcs Add atomic modeset helpers to tfp410 connector funcs. Property handling related helpers, atomic reset helper, and new dpms helper is needed in connector for atomic modeseting to work. The default helper functions are enough. Signed-off-by: Jyri Sarha --- diff --git a/drivers/gpu/drm/tilcdc/tilcdc_tfp410.c b/drivers/gpu/drm/tilcdc/tilcdc_tfp410.c index 21f6485c87cb..741c7b5b8302 100644 --- a/drivers/gpu/drm/tilcdc/tilcdc_tfp410.c +++ b/drivers/gpu/drm/tilcdc/tilcdc_tfp410.c @@ -20,6 +20,7 @@ #include #include #include +#include #include "tilcdc_drv.h" @@ -200,9 +201,12 @@ static struct drm_encoder *tfp410_connector_best_encoder( static const struct drm_connector_funcs tfp410_connector_funcs = { .destroy = tfp410_connector_destroy, - .dpms = drm_helper_connector_dpms, + .dpms = drm_atomic_helper_connector_dpms, .detect = tfp410_connector_detect, .fill_modes = drm_helper_probe_single_connector_modes, + .reset = drm_atomic_helper_connector_reset, + .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, + .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, }; static const struct drm_connector_helper_funcs tfp410_connector_helper_funcs = {