From patchwork Tue Aug 1 14:19:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andi Shyti X-Patchwork-Id: 13336786 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A31E5C0015E for ; Tue, 1 Aug 2023 14:20:34 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0A74B10E409; Tue, 1 Aug 2023 14:20:34 +0000 (UTC) Received: from mgamail.intel.com (unknown [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id 939C610E406; Tue, 1 Aug 2023 14:20:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1690899631; x=1722435631; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=W0X1eI2zfIuWryDzr1HjoWRd2SGVBENRVhmFmH7l9Zs=; b=IaL5IrUaV5h76Sr3kmKcgtrqnGbP3/NH8Hc0JUKSIyvlA9rBoTg7/dt5 KWUTpli8WRZNr/36/r7Y4gnZbKmY4FoDUDA8Bf8qNGhP/tGYHP71vIX7J Odo6KIfe56+7aM1rRkk3ISGLPfLoN5wG2WKXf+os11boZZE75i5zT2U1s +UEbJalZ17hc8HhoL7KXo9rZwFFI+qRDcuAM8ZYQY3k3M5+Ye8aoTs5nz +X/J8xS6k4ldE0Jponw7oN8IS5O9Jrz2Mzz/ypXxY8UrPi5rvkZPxud/a kj3UCHjLC7mtVlqnE7sg3udTxPWqQkdnBa1zzWuPha5xohcNOfRDO5jdG g==; X-IronPort-AV: E=McAfee;i="6600,9927,10789"; a="372023426" X-IronPort-AV: E=Sophos;i="6.01,247,1684825200"; d="scan'208";a="372023426" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Aug 2023 07:20:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10789"; a="678687270" X-IronPort-AV: E=Sophos;i="6.01,247,1684825200"; d="scan'208";a="678687270" Received: from jhajducz-mobl.ger.corp.intel.com (HELO intel.com) ([10.252.37.77]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Aug 2023 07:20:28 -0700 From: Andi Shyti To: Chris Wilson , Mauro Carvalho Chehab Date: Tue, 1 Aug 2023 16:19:55 +0200 Message-Id: <20230801141955.383305-5-andi.shyti@linux.intel.com> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230801141955.383305-1-andi.shyti@linux.intel.com> References: <20230801141955.383305-1-andi.shyti@linux.intel.com> MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH 4/4] drm/i915: Remove unnecessary include X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: intel-gfx , dri-devel Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" The inclusion of intel_gt_defines.h was initially added to i915_drv.h to provide the definition of I915_MAX_GT, where it was originally defined. However, since I915_MAX_GT is now included in i915_gem_object_types.h, it sis no longer required in i915_drv.h. Signed-off-by: Andi Shyti Cc: Chris Wilson --- drivers/gpu/drm/i915/i915_drv.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 1584b01e1bd6c..a1a2fe31f4340 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -44,7 +44,6 @@ #include "gem/i915_gem_stolen.h" #include "gt/intel_engine.h" -#include "gt/intel_gt_defines.h" #include "gt/intel_gt_types.h" #include "gt/intel_region_lmem.h" #include "gt/intel_workarounds.h"