From patchwork Mon Apr 24 04:50:22 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 98002 Delivered-To: patch@linaro.org Received: by 10.140.109.52 with SMTP id k49csp1321580qgf; Sun, 23 Apr 2017 21:57:55 -0700 (PDT) X-Received: by 10.84.217.153 with SMTP id p25mr30393682pli.188.1493009875417; Sun, 23 Apr 2017 21:57:55 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p16si9938180pgn.202.2017.04.23.21.57.55; Sun, 23 Apr 2017 21:57:55 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1165151AbdDXE5x (ORCPT + 15 others); Mon, 24 Apr 2017 00:57:53 -0400 Received: from conuserg-12.nifty.com ([210.131.2.79]:48521 "EHLO conuserg-12.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1164674AbdDXEvz (ORCPT ); Mon, 24 Apr 2017 00:51:55 -0400 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-12.nifty.com with ESMTP id v3O4oqMh025903; Mon, 24 Apr 2017 13:50:55 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-12.nifty.com v3O4oqMh025903 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1493009455; bh=kL89sbC7vYqOSzCveXMKy5lHYQNmoJ3iKmfaByTb60Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=G9oVHrZG8RdVyyINwSeL9WBbppHCDaIrNdsOdhMtaJqGQMAHOdz0Qd2YDegbDuchP 5KGO0pVKYUR5oyI/cupm8TIWzIq7rxX2D9jH8y2/c5dV7ue+cX9/98zPrDimt/1U/6 p7y2z5HfN+zOhvDunsbqW+OoiQNfvZrC1NTGamu29oCK6oIvnB5R+SZ3FbEoNsKgYf 5cV/TvGElK7f/Gm3Zfc2rUj8wz4CzyZ7DFqLscNtbIN//Nla7E6B9p1lMaoJaEvKi5 oU5TSgwUJU1aQHdQ6EzGh9ksaDf+Of75e9PoKYi0c9BiUyOL3hGf8QjZHr/75TiodC iLJ8QIZoir4Vg== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: dri-devel@lists.freedesktop.org, David Airlie , Daniel Vetter , Jani Nikula , Sean Paul Cc: linux-kernel@vger.kernel.org, Masahiro Yamada Subject: [PATCH v2 04/29] drm/ast: fix include notation and remove -Iinclude/drm flag Date: Mon, 24 Apr 2017 13:50:22 +0900 Message-Id: <1493009447-31524-5-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1493009447-31524-1-git-send-email-yamada.masahiro@socionext.com> References: <1493009447-31524-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Include instead of relative path from include/drm, then remove the -Iinclude/drm compiler flag. Signed-off-by: Masahiro Yamada --- Changes in v2: - Sort the touched part alphabetically drivers/gpu/drm/ast/Makefile | 2 -- drivers/gpu/drm/ast/ast_ttm.c | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) -- 2.7.4 diff --git a/drivers/gpu/drm/ast/Makefile b/drivers/gpu/drm/ast/Makefile index 171aa06..617fdd3 100644 --- a/drivers/gpu/drm/ast/Makefile +++ b/drivers/gpu/drm/ast/Makefile @@ -2,8 +2,6 @@ # Makefile for the drm device driver. This driver provides support for the # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. -ccflags-y := -Iinclude/drm - ast-y := ast_drv.o ast_main.o ast_mode.o ast_fb.o ast_ttm.o ast_post.o ast_dp501.o obj-$(CONFIG_DRM_AST) := ast.o diff --git a/drivers/gpu/drm/ast/ast_ttm.c b/drivers/gpu/drm/ast/ast_ttm.c index e879496..5808498 100644 --- a/drivers/gpu/drm/ast/ast_ttm.c +++ b/drivers/gpu/drm/ast/ast_ttm.c @@ -26,8 +26,9 @@ * Authors: Dave Airlie */ #include +#include + #include "ast_drv.h" -#include static inline struct ast_private * ast_bdev(struct ttm_bo_device *bd)