From patchwork Fri Dec 10 13:16:59 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jani Nikula X-Patchwork-Id: 12669551 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 0CA79C433F5 for ; Fri, 10 Dec 2021 13:17:40 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6890C10E2B6; Fri, 10 Dec 2021 13:17:39 +0000 (UTC) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 920D610E29B for ; Fri, 10 Dec 2021 13:17:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1639142257; x=1670678257; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=/LAn3G/T+KFCuXInbFZjKXVv2tw0jxdaWc5TGky+kS8=; b=VeKLP6/aDSDx84rt1sct3gd4zuvPr4Po7dLwqVeANdAPwfwXCD9E6ARP HCWjI4E+tOOstp7QHxul1f0GrYh9abQ0B5Qhe4JmdByV8PMhhWkoKYlvp KWTP8fZ33+GkQh8QIjxwLQ1iAaMKKecCtEb+q2amsXU10jGBl1gMfsUyC A8hl77FVrutPdCxDsXCBvTsixT1TSNtNniHPGUP3o2AF5CGRRLj5BobhS CPEZwXzmx/RvkRvHCUhwt7/08O7O5kCYd/RBF5CPaVXlDJeix6KtwVPKX cHyfPnBv0OoGLRHzHncWrvYQnDtrtdSqlPkwyIgNbFfJLpowsTJAEsfyH g==; X-IronPort-AV: E=McAfee;i="6200,9189,10193"; a="235856492" X-IronPort-AV: E=Sophos;i="5.88,195,1635231600"; d="scan'208";a="235856492" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Dec 2021 05:17:37 -0800 X-IronPort-AV: E=Sophos;i="5.88,195,1635231600"; d="scan'208";a="480724273" Received: from mpcorrig-mobl1.ger.corp.intel.com (HELO localhost) ([10.252.4.173]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Dec 2021 05:17:35 -0800 From: Jani Nikula To: intel-gfx@lists.freedesktop.org Date: Fri, 10 Dec 2021 15:16:59 +0200 Message-Id: X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Subject: [Intel-gfx] [PATCH v2 5/7] drm/i915/fb: reduce include dependencies 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: jani.nikula@intel.com Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" We actually need i915_active_types.h, not i915_active.h. Reviewed-by: Ville Syrjälä Signed-off-by: Jani Nikula --- drivers/gpu/drm/i915/display/intel_frontbuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.h b/drivers/gpu/drm/i915/display/intel_frontbuffer.h index a88441edc8f9..ff0c37b079aa 100644 --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.h +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.h @@ -28,7 +28,7 @@ #include #include "gem/i915_gem_object_types.h" -#include "i915_active.h" +#include "i915_active_types.h" struct drm_i915_private;