All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>
Cc: l.stach@pengutronix.de, lukas@mntmn.com, agx@sigxcpu.org,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
	linux-imx@nxp.com, laurentiu.palcu@oss.nxp.com
Subject: [PATCH v8 1/5] drm/imx: compile imx directory by default
Date: Fri, 24 Jul 2020 12:07:30 +0300	[thread overview]
Message-ID: <20200724090736.12228-2-laurentiu.palcu@oss.nxp.com> (raw)
In-Reply-To: <20200724090736.12228-1-laurentiu.palcu@oss.nxp.com>

From: Laurentiu Palcu <laurentiu.palcu@nxp.com>

Currently the drm/imx/ directory is compiled only if DRM_IMX is set. Adding a
new IMX related IP in the same directory would need DRM_IMX to be set, which would
bring in also IPUv3 core driver...

The current patch would allow adding new IPs in the imx/ directory without needing
to set DRM_IMX.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@nxp.com>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
---
 drivers/gpu/drm/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 2c0e5a7e5953..c4d12e756c63 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -100,7 +100,7 @@ obj-$(CONFIG_DRM_MSM) += msm/
 obj-$(CONFIG_DRM_TEGRA) += tegra/
 obj-$(CONFIG_DRM_STM) += stm/
 obj-$(CONFIG_DRM_STI) += sti/
-obj-$(CONFIG_DRM_IMX) += imx/
+obj-y 			+= imx/
 obj-$(CONFIG_DRM_INGENIC) += ingenic/
 obj-$(CONFIG_DRM_MEDIATEK) += mediatek/
 obj-$(CONFIG_DRM_MESON)	+= meson/
-- 
2.23.0


WARNING: multiple messages have this Message-ID (diff)
From: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
To: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>
Cc: agx@sigxcpu.org, lukas@mntmn.com, linux-kernel@vger.kernel.org,
	dri-devel@lists.freedesktop.org, linux-imx@nxp.com,
	laurentiu.palcu@oss.nxp.com
Subject: [PATCH v8 1/5] drm/imx: compile imx directory by default
Date: Fri, 24 Jul 2020 12:07:30 +0300	[thread overview]
Message-ID: <20200724090736.12228-2-laurentiu.palcu@oss.nxp.com> (raw)
In-Reply-To: <20200724090736.12228-1-laurentiu.palcu@oss.nxp.com>

From: Laurentiu Palcu <laurentiu.palcu@nxp.com>

Currently the drm/imx/ directory is compiled only if DRM_IMX is set. Adding a
new IMX related IP in the same directory would need DRM_IMX to be set, which would
bring in also IPUv3 core driver...

The current patch would allow adding new IPs in the imx/ directory without needing
to set DRM_IMX.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@nxp.com>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
---
 drivers/gpu/drm/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/Makefile b/drivers/gpu/drm/Makefile
index 2c0e5a7e5953..c4d12e756c63 100644
--- a/drivers/gpu/drm/Makefile
+++ b/drivers/gpu/drm/Makefile
@@ -100,7 +100,7 @@ obj-$(CONFIG_DRM_MSM) += msm/
 obj-$(CONFIG_DRM_TEGRA) += tegra/
 obj-$(CONFIG_DRM_STM) += stm/
 obj-$(CONFIG_DRM_STI) += sti/
-obj-$(CONFIG_DRM_IMX) += imx/
+obj-y 			+= imx/
 obj-$(CONFIG_DRM_INGENIC) += ingenic/
 obj-$(CONFIG_DRM_MEDIATEK) += mediatek/
 obj-$(CONFIG_DRM_MESON)	+= meson/
-- 
2.23.0

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

  reply	other threads:[~2020-07-24  9:08 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-24  9:07 [PATCH v8 0/5] Add support for iMX8MQ Display Controller Subsystem Laurentiu Palcu
2020-07-24  9:07 ` Laurentiu Palcu
2020-07-24  9:07 ` Laurentiu Palcu
2020-07-24  9:07 ` Laurentiu Palcu [this message]
2020-07-24  9:07   ` [PATCH v8 1/5] drm/imx: compile imx directory by default Laurentiu Palcu
2020-07-24  9:07 ` [PATCH v8 2/5] drm/imx: Add initial support for DCSS on iMX8MQ Laurentiu Palcu
2020-07-24  9:07   ` Laurentiu Palcu
2020-07-29 13:11   ` Guido Günther
2020-07-29 13:11     ` Guido Günther
2020-07-29 13:27     ` Laurentiu Palcu
2020-07-29 13:27       ` Laurentiu Palcu
2020-07-24  9:07 ` [PATCH v8 3/5] drm/imx/dcss: use drm_bridge_connector API Laurentiu Palcu
2020-07-24  9:07   ` Laurentiu Palcu
2020-07-24  9:07   ` Laurentiu Palcu
2020-07-24  9:07 ` [PATCH v8 4/5] MAINTAINERS: Add entry for i.MX 8MQ DCSS driver Laurentiu Palcu
2020-07-24  9:07   ` Laurentiu Palcu
2020-07-24  9:07 ` [PATCH v8 5/5] dt-bindings: display: imx: add bindings for DCSS Laurentiu Palcu
2020-07-24  9:07   ` Laurentiu Palcu
2020-07-24  9:07   ` Laurentiu Palcu
2020-07-29 13:27   ` Guido Günther
2020-07-29 13:27     ` Guido Günther
2020-07-29 13:27     ` Guido Günther
2020-07-29 14:19     ` Laurentiu Palcu
2020-07-29 14:19       ` Laurentiu Palcu
2020-07-29 14:19       ` Laurentiu Palcu
2020-07-29 13:59 ` [PATCH v8 0/5] Add support for iMX8MQ Display Controller Subsystem Guido Günther
2020-07-29 13:59   ` Guido Günther
2020-07-29 13:59   ` Guido Günther
2020-07-29 14:16   ` Laurentiu Palcu
2020-07-29 14:16     ` Laurentiu Palcu
2020-07-29 14:16     ` Laurentiu Palcu
2020-07-29 15:09     ` Guido Günther
2020-07-29 15:09       ` Guido Günther
2020-07-29 15:09       ` Guido Günther
2020-07-30  9:10       ` Laurentiu Palcu
2020-07-30  9:10         ` Laurentiu Palcu
2020-07-30  9:10         ` Laurentiu Palcu
2020-07-30  9:13         ` Guido Günther
2020-07-30  9:13           ` Guido Günther
2020-07-30  9:13           ` Guido Günther

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=20200724090736.12228-2-laurentiu.palcu@oss.nxp.com \
    --to=laurentiu.palcu@oss.nxp.com \
    --cc=agx@sigxcpu.org \
    --cc=airlied@linux.ie \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=l.stach@pengutronix.de \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lukas@mntmn.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=tzimmermann@suse.de \
    /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.