Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1441973 > unrolled thread

linux-next: manual merge of the drm-misc tree with the arm tree

Started byStephen Rothwell <sfr@canb.auug.org.au>
First post2016-07-13 04:40 +0200
Last post2016-07-13 04:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  linux-next: manual merge of the drm-misc tree with the arm tree Stephen Rothwell <sfr@canb.auug.org.au> - 2016-07-13 04:40 +0200

#1441973 — linux-next: manual merge of the drm-misc tree with the arm tree

FromStephen Rothwell <sfr@canb.auug.org.au>
Date2016-07-13 04:40 +0200
Subjectlinux-next: manual merge of the drm-misc tree with the arm tree
Message-ID<rUifD-5fa-3@gated-at.bofh.it>
Hi all,

Today's linux-next merge of the drm-misc tree got a conflict in:

  drivers/gpu/drm/rockchip/rockchip_drm_drv.c

between commit:

  062993b15e8e ("drm: convert DT component matching to component_match_add_release()")

from the arm tree and commit:

  6d5fa28c13b9 ("gpu: drm: rockchip_drm_drv: add missing of_node_put after calling of_parse_phandle")

from the drm-misc tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc drivers/gpu/drm/rockchip/rockchip_drm_drv.c
index 7fd20c0e1fc8,f0bd1ee8b128..000000000000
--- a/drivers/gpu/drm/rockchip/rockchip_drm_drv.c
+++ b/drivers/gpu/drm/rockchip/rockchip_drm_drv.c
@@@ -438,9 -433,8 +438,10 @@@ static int rockchip_drm_platform_probe(
  			is_support_iommu = false;
  		}
  
+ 		of_node_put(iommu);
 -		component_match_add(dev, &match, compare_of, port->parent);
 +		of_node_get(port->parent);
 +		component_match_add_release(dev, &match, release_of,
 +					    compare_of, port->parent);
  		of_node_put(port);
  	}
  

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web