dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Use of-graph helpers to loop over endpoints
@ 2015-03-31 11:58 Philipp Zabel
  2015-04-08  1:23 ` Dave Airlie
  0 siblings, 1 reply; 5+ messages in thread
From: Philipp Zabel @ 2015-03-31 11:58 UTC (permalink / raw)
  To: David Airlie; +Cc: kernel, dri-devel

Hi Dave,

now that the of-graph helper tag has been merged into
  git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
could you merge it and these patches that use it to clean up looping
over of-graph endpoints in drm drivers:

The following changes since commit d7de390bff7ad0f551fc0e409543e98db86a65df:

  Merge branch 'drm-atmel-hlcdc-4.1-fixes' of git://github.com/bbrezillon/linux-at91 into drm-next (2015-03-31 13:38:01 +1000)

are available in the git repository at:

  git://git.pengutronix.de/git/pza/linux.git tags/of-graph-drm-2015-03-31

for you to fetch changes up to 70dab9e2de9691f550416968f818be115c7b5491:

  drm/rockchip: use for_each_endpoint_of_node macro, drop endpoint reference on break (2015-03-31 12:07:51 +0200)

----------------------------------------------------------------
drm: Use of-graph helpers to loop over endpoints

Convert all drm callers that use of_graph_get_next_endpoint to loop over
of-graph endpoints to the newly introduced for_each_endpoint_of_node
helper macro.

----------------------------------------------------------------
Philipp Zabel (8):
      of: Decrement refcount of previous endpoint in of_graph_get_next_endpoint
      of: Add for_each_endpoint_of_node helper macro
      of: Add of_graph_get_port_by_id function
      Merge tag 'of-graph-for-4.0' of git://git.pengutronix.de/git/pza/linux into for-next
      drm: use for_each_endpoint_of_node macro in drm_of_find_possible_crtcs
      drm/imx: use for_each_endpoint_of_node macro in imx_drm_encoder_get_mux_id
      drm/rcar-du: use for_each_endpoint_of_node macro
      drm/rockchip: use for_each_endpoint_of_node macro, drop endpoint reference on break

 drivers/coresight/of_coresight.c                  | 13 ++-----
 drivers/gpu/drm/drm_of.c                          | 10 ++----
 drivers/gpu/drm/imx/imx-drm-core.c                | 20 +++--------
 drivers/gpu/drm/rcar-du/rcar_du_kms.c             | 25 +++-----------
 drivers/gpu/drm/rockchip/rockchip_drm_drv.c       | 11 +++---
 drivers/media/platform/am437x/am437x-vpfe.c       |  1 -
 drivers/media/platform/soc_camera/soc_camera.c    |  3 +-
 drivers/of/base.c                                 | 41 ++++++++++++++++++-----
 drivers/video/fbdev/omap2/dss/omapdss-boot-init.c |  7 +---
 include/linux/of_graph.h                          | 18 ++++++++++
 10 files changed, 71 insertions(+), 78 deletions(-)

regards
Philipp

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Use of-graph helpers to loop over endpoints
  2015-03-31 11:58 [GIT PULL] Use of-graph helpers to loop over endpoints Philipp Zabel
@ 2015-04-08  1:23 ` Dave Airlie
  2015-04-08  9:37   ` Philipp Zabel
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Airlie @ 2015-04-08  1:23 UTC (permalink / raw)
  To: Philipp Zabel, Rob Herring; +Cc: dri-devel, Sascha Hauer

On 31 March 2015 at 21:58, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Hi Dave,
>
> now that the of-graph helper tag has been merged into
>   git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
> could you merge it and these patches that use it to clean up looping
> over of-graph endpoints in drm drivers:

This causes build failures fixed by a patch in Rob's tree, you
probably unfortunately need to rebase on Rob's tree
and send me that so I get a tree that builds out of this.

Dave.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Use of-graph helpers to loop over endpoints
  2015-04-08  1:23 ` Dave Airlie
@ 2015-04-08  9:37   ` Philipp Zabel
  2015-04-17  4:51     ` Dave Airlie
  0 siblings, 1 reply; 5+ messages in thread
From: Philipp Zabel @ 2015-04-08  9:37 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Rob Herring, Sascha Hauer, dri-devel

On Wed, Apr 08, 2015 at 11:23:29AM +1000, Dave Airlie wrote:
> On 31 March 2015 at 21:58, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> > Hi Dave,
> >
> > now that the of-graph helper tag has been merged into
> >   git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
> > could you merge it and these patches that use it to clean up looping
> > over of-graph endpoints in drm drivers:
> 
> This causes build failures fixed by a patch in Rob's tree, you
> probably unfortunately need to rebase on Rob's tree
> and send me that so I get a tree that builds out of this.
> 
> Dave.

Rebased on Rob's tree, the following changes since commit 01218bf14ee60d4a2d6c667ebdbba3ae9a7a1d66:

  of: Explicitly include linux/types.h in of_graph.h (2015-03-26 12:14:56 -0500)

are available in the git repository at:

  git://git.pengutronix.de/git/pza/linux.git tags/of-graph-drm-2015-04-08

for you to fetch changes up to ecaa4902222fd4d28692203bec028513fbac29c7:

  drm/rockchip: use for_each_endpoint_of_node macro, drop endpoint reference on break (2015-04-08 11:14:27 +0200)

----------------------------------------------------------------
drm: Use of-graph helpers to loop over endpoints

Convert all drm callers that use of_graph_get_next_endpoint to loop over
of-graph endpoints to the newly introduced for_each_endpoint_of_node
helper macro.

----------------------------------------------------------------
Philipp Zabel (4):
      drm: use for_each_endpoint_of_node macro in drm_of_find_possible_crtcs
      drm/imx: use for_each_endpoint_of_node macro in imx_drm_encoder_get_mux_id
      drm/rcar-du: use for_each_endpoint_of_node macro
      drm/rockchip: use for_each_endpoint_of_node macro, drop endpoint reference on break

 drivers/gpu/drm/drm_of.c                    | 10 +++-------
 drivers/gpu/drm/imx/imx-drm-core.c          | 11 ++++-------
 drivers/gpu/drm/rcar-du/rcar_du_kms.c       | 16 +++-------------
 drivers/gpu/drm/rockchip/rockchip_drm_drv.c | 11 ++++-------
 4 files changed, 14 insertions(+), 34 deletions(-)

regards
Philipp
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Use of-graph helpers to loop over endpoints
  2015-04-08  9:37   ` Philipp Zabel
@ 2015-04-17  4:51     ` Dave Airlie
  2015-04-17 12:26       ` Rob Herring
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Airlie @ 2015-04-17  4:51 UTC (permalink / raw)
  To: Philipp Zabel; +Cc: Rob Herring, Linus Torvalds, Sascha Hauer, dri-devel

On 8 April 2015 at 19:37, Philipp Zabel <pza@pengutronix.de> wrote:
> On Wed, Apr 08, 2015 at 11:23:29AM +1000, Dave Airlie wrote:
>> On 31 March 2015 at 21:58, Philipp Zabel <p.zabel@pengutronix.de> wrote:
>> > Hi Dave,
>> >
>> > now that the of-graph helper tag has been merged into
>> >   git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
>> > could you merge it and these patches that use it to clean up looping
>> > over of-graph endpoints in drm drivers:
>>
>> This causes build failures fixed by a patch in Rob's tree, you
>> probably unfortunately need to rebase on Rob's tree
>> and send me that so I get a tree that builds out of this.
>>
>> Dave.
>
> Rebased on Rob's tree, the following changes since commit 01218bf14ee60d4a2d6c667ebdbba3ae9a7a1d66:

Hey Rob,

Has this tree been sent towards Linus yet, if so who is blocking it,
this is stopping me merging the drm tree.

Dave.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Use of-graph helpers to loop over endpoints
  2015-04-17  4:51     ` Dave Airlie
@ 2015-04-17 12:26       ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2015-04-17 12:26 UTC (permalink / raw)
  To: Dave Airlie
  Cc: dri-devel, Rob Herring, Sascha Hauer, Philipp Zabel,
	Linus Torvalds

+Grant

On Thu, Apr 16, 2015 at 11:51 PM, Dave Airlie <airlied@gmail.com> wrote:
> On 8 April 2015 at 19:37, Philipp Zabel <pza@pengutronix.de> wrote:
>> On Wed, Apr 08, 2015 at 11:23:29AM +1000, Dave Airlie wrote:
>>> On 31 March 2015 at 21:58, Philipp Zabel <p.zabel@pengutronix.de> wrote:
>>> > Hi Dave,
>>> >
>>> > now that the of-graph helper tag has been merged into
>>> >   git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
>>> > could you merge it and these patches that use it to clean up looping
>>> > over of-graph endpoints in drm drivers:
>>>
>>> This causes build failures fixed by a patch in Rob's tree, you
>>> probably unfortunately need to rebase on Rob's tree
>>> and send me that so I get a tree that builds out of this.
>>>
>>> Dave.
>>
>> Rebased on Rob's tree, the following changes since commit 01218bf14ee60d4a2d6c667ebdbba3ae9a7a1d66:
>
> Hey Rob,
>
> Has this tree been sent towards Linus yet, if so who is blocking it,
> this is stopping me merging the drm tree.

Grant is going to send it to Linus. He said he was going to do it
earlier this week, but I've not seen the pull req.

Rob
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-04-17 12:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-31 11:58 [GIT PULL] Use of-graph helpers to loop over endpoints Philipp Zabel
2015-04-08  1:23 ` Dave Airlie
2015-04-08  9:37   ` Philipp Zabel
2015-04-17  4:51     ` Dave Airlie
2015-04-17 12:26       ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox