diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-06-07 07:48:10 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-06-10 11:25:06 -0400 |
commit | a50dcc500170eca8164e72f1c7eaf4402193b10c (patch) | |
tree | fbc0c194088d49d029e8c254eec4bbb8670cc280 /drivers/gpu/drm/virtio | |
parent | b2d61d66ad4e456899140a8891542a915c0b0c78 (diff) |
drm: virtgpu: Rely on the default ->best_encoder() behavior
The virtgpu output exposes a 1:1 relationship between connectors and
encoders and the driver is relying on the atomic helpers: we can drop
the custom ->best_encoder() implementation and let the core call
drm_atomic_helper_best_encoder() for us.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1465300095-16971-16-git-send-email-boris.brezillon@free-electrons.com
Diffstat (limited to 'drivers/gpu/drm/virtio')
-rw-r--r-- | drivers/gpu/drm/virtio/virtgpu_display.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/gpu/drm/virtio/virtgpu_display.c b/drivers/gpu/drm/virtio/virtgpu_display.c index 3d0fa049b34c..ac8ea7dbf7b0 100644 --- a/drivers/gpu/drm/virtio/virtgpu_display.c +++ b/drivers/gpu/drm/virtio/virtgpu_display.c | |||
@@ -259,15 +259,6 @@ static int virtio_gpu_conn_mode_valid(struct drm_connector *connector, | |||
259 | return MODE_BAD; | 259 | return MODE_BAD; |
260 | } | 260 | } |
261 | 261 | ||
262 | static struct drm_encoder* | ||
263 | virtio_gpu_best_encoder(struct drm_connector *connector) | ||
264 | { | ||
265 | struct virtio_gpu_output *virtio_gpu_output = | ||
266 | drm_connector_to_virtio_gpu_output(connector); | ||
267 | |||
268 | return &virtio_gpu_output->enc; | ||
269 | } | ||
270 | |||
271 | static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { | 262 | static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { |
272 | .mode_set = virtio_gpu_enc_mode_set, | 263 | .mode_set = virtio_gpu_enc_mode_set, |
273 | .enable = virtio_gpu_enc_enable, | 264 | .enable = virtio_gpu_enc_enable, |
@@ -277,7 +268,6 @@ static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { | |||
277 | static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { | 268 | static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { |
278 | .get_modes = virtio_gpu_conn_get_modes, | 269 | .get_modes = virtio_gpu_conn_get_modes, |
279 | .mode_valid = virtio_gpu_conn_mode_valid, | 270 | .mode_valid = virtio_gpu_conn_mode_valid, |
280 | .best_encoder = virtio_gpu_best_encoder, | ||
281 | }; | 271 | }; |
282 | 272 | ||
283 | static enum drm_connector_status virtio_gpu_conn_detect( | 273 | static enum drm_connector_status virtio_gpu_conn_detect( |