All of lore.kernel.org
 help / color / mirror / Atom feed
From: Masahiro Yamada <yamada.masahiro@socionext.com>
To: dri-devel@lists.freedesktop.org, David Airlie <airlied@linux.ie>,
	Daniel Vetter <daniel.vetter@intel.com>,
	Jani Nikula <jani.nikula@linux.intel.com>,
	Sean Paul <seanpaul@chromium.org>
Cc: linux-kernel@vger.kernel.org,
	Masahiro Yamada <yamada.masahiro@socionext.com>
Subject: [PATCH 07/28] drm/hisilicon: fix include notation and remove -Iinclude/drm flag
Date: Thu, 20 Apr 2017 18:56:51 +0900	[thread overview]
Message-ID: <1492682232-29769-8-git-send-email-yamada.masahiro@socionext.com> (raw)
In-Reply-To: <1492682232-29769-1-git-send-email-yamada.masahiro@socionext.com>

Include <drm/*.h> instead of relative path from include/drm, then
remove the -Iinclude/drm compiler flag.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 drivers/gpu/drm/hisilicon/hibmc/Makefile    | 1 -
 drivers/gpu/drm/hisilicon/hibmc/hibmc_ttm.c | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/hisilicon/hibmc/Makefile b/drivers/gpu/drm/hisilicon/hibmc/Makefile
index f2e04c0..3df7266 100644
--- a/drivers/gpu/drm/hisilicon/hibmc/Makefile
+++ b/drivers/gpu/drm/hisilicon/hibmc/Makefile
@@ -1,4 +1,3 @@
-ccflags-y := -Iinclude/drm
 hibmc-drm-y := hibmc_drm_drv.o hibmc_drm_de.o hibmc_drm_vdac.o hibmc_drm_fbdev.o hibmc_ttm.o
 
 obj-$(CONFIG_DRM_HISI_HIBMC) += hibmc-drm.o
diff --git a/drivers/gpu/drm/hisilicon/hibmc/hibmc_ttm.c b/drivers/gpu/drm/hisilicon/hibmc/hibmc_ttm.c
index 20732b6..ac457c7 100644
--- a/drivers/gpu/drm/hisilicon/hibmc/hibmc_ttm.c
+++ b/drivers/gpu/drm/hisilicon/hibmc/hibmc_ttm.c
@@ -17,7 +17,7 @@
  */
 
 #include <drm/drm_atomic_helper.h>
-#include <ttm/ttm_page_alloc.h>
+#include <drm/ttm/ttm_page_alloc.h>
 
 #include "hibmc_drm_drv.h"
 
-- 
2.7.4

  parent reply	other threads:[~2017-04-20  9:59 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-20  9:56 [PATCH 00/28] gpu/drm: remove -Iinclude/drm compiler flags from Makefile Masahiro Yamada
2017-04-20  9:56 ` [PATCH 01/28] drm/ttm: fix include notation and remove -Iinclude/drm flag Masahiro Yamada
2017-04-21  9:00   ` Michel Dänzer
2017-04-21  9:00     ` Michel Dänzer
2017-04-20  9:56 ` [PATCH 02/28] drm/amd: " Masahiro Yamada
2017-04-21  9:03   ` Michel Dänzer
2017-04-21  9:03     ` Michel Dänzer
2017-04-20  9:56 ` [PATCH 03/28] drm/ast: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 04/28] drm/bochs: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 05/28] drm/bridge: " Masahiro Yamada
2017-04-21  5:51   ` Andrzej Hajda
2017-04-21  5:51     ` Andrzej Hajda
2017-04-21  8:50     ` Masahiro Yamada
2017-04-20  9:56 ` [PATCH 06/28] drm/cirrus: " Masahiro Yamada
2017-04-20  9:56 ` Masahiro Yamada [this message]
2017-04-20  9:56 ` [PATCH 08/28] drm/mgag200: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 09/28] drm/msm: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 10/28] drm/nouveau: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 11/28] drm/qxl: " Masahiro Yamada
2017-04-25 17:04   ` Gabriel Krisman Bertazi
2017-04-25 17:04     ` Gabriel Krisman Bertazi
2017-04-20  9:56 ` [PATCH 12/28] drm/radeon: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 13/28] drm/tilcdc: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 14/28] drm/vc4: " Masahiro Yamada
2017-04-20  9:56 ` [PATCH 15/28] drm/virtio: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 16/28] drm/vmwgfx: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 17/28] drm/gma500: remove unneeded -Iinclude/drm compiler flag Masahiro Yamada
2017-04-20  9:57 ` [PATCH 18/28] drm/i810: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 19/28] drm/i2c: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 20/28] drm/mga: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 21/28] drm/omap: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 22/28] drm/r128: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 23/28] drm/savage: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 24/28] drm/sis: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 25/28] drm/tdfx: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 26/28] drm/udl: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 27/28] drm/vgem: " Masahiro Yamada
2017-04-20  9:57 ` [PATCH 28/28] drm/via: " Masahiro Yamada

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=1492682232-29769-8-git-send-email-yamada.masahiro@socionext.com \
    --to=yamada.masahiro@socionext.com \
    --cc=airlied@linux.ie \
    --cc=daniel.vetter@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=seanpaul@chromium.org \
    /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.