All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Shayenne Moura <shayenneluzmoura@gmail.com>
Cc: Neil Armstrong <narmstrong@baylibre.com>,
	Maxime Ripard <maxime.ripard@bootlin.com>,
	Vincent Abriou <vincent.abriou@st.com>,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	David Airlie <airlied@linux.ie>,
	Tomi Valkeinen <tomi.valkeinen@ti.com>,
	Kevin Hilman <khilman@baylibre.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	Carlo Caione <carlo@caione.org>, Sean Paul <sean@poorly.run>
Subject: Re: [PATCH v2 0/7] drm: Remove drm_mode_object dependency from drm_display_mode
Date: Wed, 9 Jan 2019 22:10:14 +0100	[thread overview]
Message-ID: <20190109211014.GX21184@phenom.ffwll.local> (raw)
In-Reply-To: <cover.1545308167.git.shayenneluzmoura@gmail.com>

On Thu, Dec 20, 2018 at 10:24:27AM -0200, Shayenne Moura wrote:
> This patch serie removes drm_mode_object dependency from
> drm_display_mode struct. This is part of KMS cleanup.
> 
> Shayenne Moura (7):
>   drm: msm: Cleanup drm_display_mode print str
>   drm: omapdrm: Cleanup drm_display_mode print str
>   drm: meson: Cleanup on drm_display_mode print str
>   drm: sti: Cleanup drm_display_mode print str
>   drm: i915: Cleanup drm_display_mode print str
>   drm: Remove use of drm_mode_object
>   drm: Complete remove drm_mode_object dependency

Ok, merged patches 2-5 to drm-misc-next. Sorry for the delay, caught a
cold and was out of service past few days :-/

Can you pls fix the compile issue in the msm patch? Looks like that wasn't
properly compile-tested. For a howto, see:

https://blog.ffwll.ch/2016/02/arm-kernel-cross-compiling.html

and make sure MSM is enabled in the .config. You can configure the
cross-compiled kernel with e.g.

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- menuconfig

Thanks, Daniel
> 
>  drivers/gpu/drm/drm_crtc_helper.c             |  5 ++---
>  drivers/gpu/drm/drm_modes.c                   |  9 --------
>  drivers/gpu/drm/i915/i915_debugfs.c           |  9 +-------
>  drivers/gpu/drm/meson/meson_dw_hdmi.c         | 12 +++--------
>  drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c     | 10 ++-------
>  .../gpu/drm/msm/disp/mdp4/mdp4_dsi_encoder.c  |  9 +-------
>  .../gpu/drm/msm/disp/mdp4/mdp4_dtv_encoder.c  |  9 +-------
>  .../gpu/drm/msm/disp/mdp4/mdp4_lcdc_encoder.c |  9 +-------
>  .../gpu/drm/msm/disp/mdp5/mdp5_cmd_encoder.c  |  9 +-------
>  drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c     |  9 +-------
>  drivers/gpu/drm/msm/disp/mdp5/mdp5_encoder.c  |  9 +-------
>  drivers/gpu/drm/msm/dsi/dsi_manager.c         |  9 +-------
>  drivers/gpu/drm/msm/edp/edp_bridge.c          |  9 +-------
>  drivers/gpu/drm/omapdrm/omap_connector.c      |  9 ++------
>  drivers/gpu/drm/omapdrm/omap_crtc.c           |  8 ++-----
>  drivers/gpu/drm/sti/sti_crtc.c                | 16 ++++----------
>  include/drm/drm_modes.h                       | 21 +++----------------
>  17 files changed, 27 insertions(+), 144 deletions(-)
> 
> -- 
> 2.17.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Daniel Vetter <daniel@ffwll.ch>
To: Shayenne Moura <shayenneluzmoura@gmail.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <maxime.ripard@bootlin.com>,
	Sean Paul <sean@poorly.run>, David Airlie <airlied@linux.ie>,
	Rob Clark <robdclark@gmail.com>,
	Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	Vincent Abriou <vincent.abriou@st.com>,
	Jani Nikula <jani.nikula@linux.intel.com>,
	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	Tomi Valkeinen <tomi.valkeinen@ti.com>,
	Neil Armstrong <narmstrong@baylibre.com>,
	Carlo Caione <carlo@caione.org>,
	Kevin Hilman <khilman@baylibre.com>,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 0/7] drm: Remove drm_mode_object dependency from drm_display_mode
Date: Wed, 9 Jan 2019 22:10:14 +0100	[thread overview]
Message-ID: <20190109211014.GX21184@phenom.ffwll.local> (raw)
In-Reply-To: <cover.1545308167.git.shayenneluzmoura@gmail.com>

On Thu, Dec 20, 2018 at 10:24:27AM -0200, Shayenne Moura wrote:
> This patch serie removes drm_mode_object dependency from
> drm_display_mode struct. This is part of KMS cleanup.
> 
> Shayenne Moura (7):
>   drm: msm: Cleanup drm_display_mode print str
>   drm: omapdrm: Cleanup drm_display_mode print str
>   drm: meson: Cleanup on drm_display_mode print str
>   drm: sti: Cleanup drm_display_mode print str
>   drm: i915: Cleanup drm_display_mode print str
>   drm: Remove use of drm_mode_object
>   drm: Complete remove drm_mode_object dependency

Ok, merged patches 2-5 to drm-misc-next. Sorry for the delay, caught a
cold and was out of service past few days :-/

Can you pls fix the compile issue in the msm patch? Looks like that wasn't
properly compile-tested. For a howto, see:

https://blog.ffwll.ch/2016/02/arm-kernel-cross-compiling.html

and make sure MSM is enabled in the .config. You can configure the
cross-compiled kernel with e.g.

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- menuconfig

Thanks, Daniel
> 
>  drivers/gpu/drm/drm_crtc_helper.c             |  5 ++---
>  drivers/gpu/drm/drm_modes.c                   |  9 --------
>  drivers/gpu/drm/i915/i915_debugfs.c           |  9 +-------
>  drivers/gpu/drm/meson/meson_dw_hdmi.c         | 12 +++--------
>  drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c     | 10 ++-------
>  .../gpu/drm/msm/disp/mdp4/mdp4_dsi_encoder.c  |  9 +-------
>  .../gpu/drm/msm/disp/mdp4/mdp4_dtv_encoder.c  |  9 +-------
>  .../gpu/drm/msm/disp/mdp4/mdp4_lcdc_encoder.c |  9 +-------
>  .../gpu/drm/msm/disp/mdp5/mdp5_cmd_encoder.c  |  9 +-------
>  drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c     |  9 +-------
>  drivers/gpu/drm/msm/disp/mdp5/mdp5_encoder.c  |  9 +-------
>  drivers/gpu/drm/msm/dsi/dsi_manager.c         |  9 +-------
>  drivers/gpu/drm/msm/edp/edp_bridge.c          |  9 +-------
>  drivers/gpu/drm/omapdrm/omap_connector.c      |  9 ++------
>  drivers/gpu/drm/omapdrm/omap_crtc.c           |  8 ++-----
>  drivers/gpu/drm/sti/sti_crtc.c                | 16 ++++----------
>  include/drm/drm_modes.h                       | 21 +++----------------
>  17 files changed, 27 insertions(+), 144 deletions(-)
> 
> -- 
> 2.17.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

  parent reply	other threads:[~2019-01-09 21:10 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-20 12:24 [PATCH v2 0/7] drm: Remove drm_mode_object dependency from drm_display_mode Shayenne Moura
2018-12-20 12:25 ` [PATCH v2 1/7] drm: msm: Cleanup drm_display_mode print str Shayenne Moura
2018-12-21 19:59   ` kbuild test robot
2018-12-21 19:59     ` kbuild test robot
2018-12-20 12:26 ` [PATCH v2 2/7] drm: omapdrm: " Shayenne Moura
2018-12-20 12:26 ` [PATCH v2 3/7] drm: meson: Cleanup on " Shayenne Moura
2018-12-20 12:26   ` Shayenne Moura
2018-12-20 12:27 ` [PATCH v2 4/7] drm: sti: Cleanup " Shayenne Moura
2018-12-20 12:27   ` Shayenne Moura
2018-12-20 13:24   ` Benjamin Gaignard
2018-12-20 13:24     ` Benjamin Gaignard
2018-12-20 12:27 ` [PATCH v2 5/7] drm: i915: " Shayenne Moura
2018-12-20 12:27   ` Shayenne Moura
2018-12-20 12:28 ` [PATCH v2 6/7] drm: Remove use of drm_mode_object Shayenne Moura
2018-12-20 12:28   ` Shayenne Moura
2018-12-20 12:29 ` [PATCH v2 7/7] drm: Complete remove drm_mode_object dependency Shayenne Moura
2018-12-20 12:29   ` Shayenne Moura
2019-01-09 21:10 ` Daniel Vetter [this message]
2019-01-09 21:10   ` [PATCH v2 0/7] drm: Remove drm_mode_object dependency from drm_display_mode Daniel Vetter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190109211014.GX21184@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=airlied@linux.ie \
    --cc=carlo@caione.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=khilman@baylibre.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maxime.ripard@bootlin.com \
    --cc=narmstrong@baylibre.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=sean@poorly.run \
    --cc=shayenneluzmoura@gmail.com \
    --cc=tomi.valkeinen@ti.com \
    --cc=vincent.abriou@st.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.