From patchwork Mon May 29 06:27:22 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "Hogander, Jouni" X-Patchwork-Id: 13258242 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 2C2B9C7EE2F for ; Mon, 29 May 2023 06:27:53 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E5DEF10E222; Mon, 29 May 2023 06:27:50 +0000 (UTC) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id D419310E213 for ; Mon, 29 May 2023 06:27:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1685341668; x=1716877668; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=yIFro2OixaipKPUBDiH9ufEe7FkQSLIiKfKL8soGkMI=; b=GAR+1i499aA7mDI4Rl/LeVi7jNcktInpnoubkkRtqG0v8NJy4hSUmegb UAcPjgG0SUgFH0Gna1erhvIPhMDTA7ZHvsqgltvwPmKU5LPnvzDXyQSJp hQU9J1BA7Ibqlosd3vMqztlRw7fKE33M7PPyLHfOLgJyCgxc/cdvCtgCw dk0hlNuaU+H5TDnecManKaK31xAMlBeENmc7Y0oMyNhx50UI6heU0PUrH d7npZZ271aokr2W9uKhDfVJ+kwvN7ULFFGHOSOl4TPwmcYpSoU1o7jULL +SfdV/MYlzLiTaUKVJgOR8/sQUPAxmsPC01scHQR49s4Cldw0qdAahUc/ A==; X-IronPort-AV: E=McAfee;i="6600,9927,10724"; a="418114389" X-IronPort-AV: E=Sophos;i="6.00,200,1681196400"; d="scan'208";a="418114389" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2023 23:27:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10724"; a="739031527" X-IronPort-AV: E=Sophos;i="6.00,200,1681196400"; d="scan'208";a="739031527" Received: from ilovin-mobl1.ger.corp.intel.com (HELO jhogande-mobl1.ger.corp.intel.com) ([10.251.208.33]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 May 2023 23:27:46 -0700 From: =?utf-8?q?Jouni_H=C3=B6gander?= To: intel-gfx@lists.freedesktop.org Date: Mon, 29 May 2023 09:27:22 +0300 Message-Id: <20230529062723.1928520-4-jouni.hogander@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230529062723.1928520-1-jouni.hogander@intel.com> References: <20230529062723.1928520-1-jouni.hogander@intel.com> MIME-Version: 1.0 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Subject: [Intel-gfx] [PATCH 3/4] drm/i915/display: Remove i915_gem_object_types.h from intel_frontbuffer.h 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: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Now as we have removed all the references to internals of i915_gem_object from the frontbuffer header we can also remove including i915_gem_object_types.h. Signed-off-by: Jouni Högander --- drivers/gpu/drm/i915/display/intel_frontbuffer.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.h b/drivers/gpu/drm/i915/display/intel_frontbuffer.h index eeccc847331d..72d89be3284b 100644 --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.h +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.h @@ -28,7 +28,6 @@ #include #include -#include "gem/i915_gem_object_types.h" #include "i915_active_types.h" struct drm_i915_private;