diff options
author | Dave Airlie <airlied@redhat.com> | 2016-06-23 20:34:49 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-06-23 20:34:49 -0400 |
commit | 59b0b70f51c1d7f22cdc4f8905cad15f19ed60ff (patch) | |
tree | 214fde698cb82bc0ba03a03412fc73c355fb63fa | |
parent | f762bfda2b81db4c3397a31e92f819818cf04efb (diff) | |
parent | 0b1e1eb76220afa043b2733dfe61f5927cf0e458 (diff) |
Merge tag 'drm-atmel-hlcdc-fixes/for-4.7-rc5' of github.com:bbrezillon/linux-at91 into drm-fixes
Two bug fixes for the atmel-hlcdc driver.
* tag 'drm-atmel-hlcdc-fixes/for-4.7-rc5' of github.com:bbrezillon/linux-at91:
drm: atmel-hlcdc: Fix OF graph parsing
drm: atmel-hlcdc: actually disable scaling when no scaling is required
-rw-r--r-- | drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c | 10 | ||||
-rw-r--r-- | drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c index 39802c0539b6..3d34fc4ca826 100644 --- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c +++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_output.c | |||
@@ -266,9 +266,10 @@ int atmel_hlcdc_create_outputs(struct drm_device *dev) | |||
266 | if (!ret) | 266 | if (!ret) |
267 | ret = atmel_hlcdc_check_endpoint(dev, &ep); | 267 | ret = atmel_hlcdc_check_endpoint(dev, &ep); |
268 | 268 | ||
269 | of_node_put(ep_np); | 269 | if (ret) { |
270 | if (ret) | 270 | of_node_put(ep_np); |
271 | return ret; | 271 | return ret; |
272 | } | ||
272 | } | 273 | } |
273 | 274 | ||
274 | for_each_endpoint_of_node(dev->dev->of_node, ep_np) { | 275 | for_each_endpoint_of_node(dev->dev->of_node, ep_np) { |
@@ -276,9 +277,10 @@ int atmel_hlcdc_create_outputs(struct drm_device *dev) | |||
276 | if (!ret) | 277 | if (!ret) |
277 | ret = atmel_hlcdc_attach_endpoint(dev, &ep); | 278 | ret = atmel_hlcdc_attach_endpoint(dev, &ep); |
278 | 279 | ||
279 | of_node_put(ep_np); | 280 | if (ret) { |
280 | if (ret) | 281 | of_node_put(ep_np); |
281 | return ret; | 282 | return ret; |
283 | } | ||
282 | } | 284 | } |
283 | 285 | ||
284 | return 0; | 286 | return 0; |
diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c index aef3ca8a81fa..016c191221f3 100644 --- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c +++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c | |||
@@ -339,6 +339,8 @@ atmel_hlcdc_plane_update_pos_and_size(struct atmel_hlcdc_plane *plane, | |||
339 | 339 | ||
340 | atmel_hlcdc_layer_update_cfg(&plane->layer, 13, 0xffffffff, | 340 | atmel_hlcdc_layer_update_cfg(&plane->layer, 13, 0xffffffff, |
341 | factor_reg); | 341 | factor_reg); |
342 | } else { | ||
343 | atmel_hlcdc_layer_update_cfg(&plane->layer, 13, 0xffffffff, 0); | ||
342 | } | 344 | } |
343 | } | 345 | } |
344 | 346 | ||