From patchwork Mon Jun 9 11:04:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 4321421 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 8B004BEEAA for ; Mon, 9 Jun 2014 11:04:25 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B6E2C201FE for ; Mon, 9 Jun 2014 11:04:24 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id C7C4C2017B for ; Mon, 9 Jun 2014 11:04:23 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 74F8F6E0D8; Mon, 9 Jun 2014 04:04:23 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by gabe.freedesktop.org (Postfix) with ESMTP id 644106E0CB for ; Mon, 9 Jun 2014 04:04:22 -0700 (PDT) Received: by mail-wg0-f45.google.com with SMTP id m15so5502093wgh.4 for ; Mon, 09 Jun 2014 04:04:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=vFPWAY2uxlvfXa+5cjTkvp3V2AxpUaPP+Wntt8GquAQ=; b=ekTD5i7bQ+aaVSdi/NN9Y1cfz68ynXD1TFl//9iwGFRPa0mvFWRk2jaaDd/FRDMEq2 7kkYjdlv2Pmqo2m8x5x5TvEWONpjedBiYWONZ0BIpx5O5cXCtPs9PCX9yfmjphQHfxuf Vwcgu19oK39U1/DccYR/5DekeBXIrW5VKgffaIXBVEb8tYe6t9FozSV9lGRdT8cguYds Jn/rY2Pl14p9bSB954/PFlDcrS1Uqa9PNnvHK4on+YsodCcvqiPRLVHPGHOcIvwJgqb7 bvV1Yvn4UbQ8J1oA1LeT/t/nJfbB6eEkx0Yus7OYBfxs3dq5OFT4kRIrOfGiE7HZwJW2 /5eQ== X-Gm-Message-State: ALoCoQlymCtb4UKa4eTmiAY6F+G5CZFvUOdWF4PG2EJEzVXlRbHQRRRgADp+qOdT/TcXgsFD/y/C X-Received: by 10.194.80.7 with SMTP id n7mr30739231wjx.8.1402311861292; Mon, 09 Jun 2014 04:04:21 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id f17sm24539855wjr.19.2014.06.09.04.04.19 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 09 Jun 2014 04:04:20 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Mon, 9 Jun 2014 12:04:19 +0100 Message-Id: <1402311860-14578-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [Intel-gfx] [i-g-t 1/2] tools: fix distcheck X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fix include paths and references to missing files. Signed-off-by: Thomas Wood --- tools/null_state_gen/Makefile.am | 3 +++ tools/null_state_gen/intel_renderstate_gen6.c | 4 ++-- tools/null_state_gen/intel_renderstate_gen7.c | 4 ++-- tools/null_state_gen/intel_renderstate_gen8.c | 4 ++-- tools/quick_dump/Makefile.am | 5 ++++- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/tools/null_state_gen/Makefile.am b/tools/null_state_gen/Makefile.am index 62b8ff7..c0103a0 100644 --- a/tools/null_state_gen/Makefile.am +++ b/tools/null_state_gen/Makefile.am @@ -1,7 +1,10 @@ noinst_PROGRAMS = intel_null_state_gen +AM_CFLAGS = -I$(top_srcdir) -I$(top_srcdir)/lib + intel_null_state_gen_SOURCES = \ intel_batchbuffer.c \ + intel_batchbuffer.h \ intel_renderstate_gen6.c \ intel_renderstate_gen7.c \ intel_renderstate_gen8.c \ diff --git a/tools/null_state_gen/intel_renderstate_gen6.c b/tools/null_state_gen/intel_renderstate_gen6.c index f169d02..dc255cf 100644 --- a/tools/null_state_gen/intel_renderstate_gen6.c +++ b/tools/null_state_gen/intel_renderstate_gen6.c @@ -1,6 +1,6 @@ #include "intel_batchbuffer.h" -#include -#include +#include "gen6_render.h" +#include "intel_reg.h" #include static const uint32_t ps_kernel_nomask_affine[][4] = { diff --git a/tools/null_state_gen/intel_renderstate_gen7.c b/tools/null_state_gen/intel_renderstate_gen7.c index 8fe8a80..4f955c3 100644 --- a/tools/null_state_gen/intel_renderstate_gen7.c +++ b/tools/null_state_gen/intel_renderstate_gen7.c @@ -23,8 +23,8 @@ #include "intel_batchbuffer.h" -#include -#include +#include "gen7_render.h" +#include "intel_reg.h" #include static const uint32_t ps_kernel[][4] = { diff --git a/tools/null_state_gen/intel_renderstate_gen8.c b/tools/null_state_gen/intel_renderstate_gen8.c index 437454e..b922c73 100644 --- a/tools/null_state_gen/intel_renderstate_gen8.c +++ b/tools/null_state_gen/intel_renderstate_gen8.c @@ -1,6 +1,6 @@ #include "intel_batchbuffer.h" -#include -#include +#include "gen8_render.h" +#include "intel_reg.h" #include struct { diff --git a/tools/quick_dump/Makefile.am b/tools/quick_dump/Makefile.am index 468dd45..a7b2a16 100644 --- a/tools/quick_dump/Makefile.am +++ b/tools/quick_dump/Makefile.am @@ -27,7 +27,10 @@ EXTRA_DIST = \ base_display.txt base_interrupt.txt base_other.txt base_power.txt base_rings.txt \ gen6_other.txt sandybridge \ gen7_other.txt ivybridge \ - vlv_display.txt vlv_dpio.txt valleyview \ + vlv_pipe_a.txt vlv_pipe_b.txt \ + vlv_display_base.txt vlv_dpio_phy.txt \ + vlv_dsi.txt vlv_flisdsi.txt \ + valleyview \ gen8_interrupt.txt \ quick_dump.py \ reg_access.py \