[PATCH] drm/ast: remove duplicate assignment of ast_crtc_funcs member

2020-04-30 Thread Jason Yan
The struct member 'set_config' was assigned twice: static const struct drm_crtc_funcs ast_crtc_funcs = { .reset = ast_crtc_reset, .set_config = drm_crtc_helper_set_config, .. .set_config = drm_atomic_helper_set_config, .. }; Since the second one is

Re: [PATCH] drm/ast: remove duplicate assignment of ast_crtc_funcs member

2020-04-29 Thread Thomas Zimmermann
Hi Am 29.04.20 um 16:10 schrieb Jason Yan: > The struct member 'set_config' was assigned twice: > > static const struct drm_crtc_funcs ast_crtc_funcs = { > .reset = ast_crtc_reset, > .set_config = drm_crtc_helper_set_config, > .. > .set_config = drm_atomic_helper_set_c