From mboxrd@z Thu Jan 1 00:00:00 1970 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 4E9C9EE7FE1 for ; Fri, 8 Sep 2023 12:24:50 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 19A2810E8A9; Fri, 8 Sep 2023 12:24:50 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8AF6D10E8A7 for ; Fri, 8 Sep 2023 12:24:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1694175886; x=1725711886; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=gB96WebXhNoipfp8RPhfXnT/SNipRpTc6NzQOCMV6rc=; b=lvvMjKWsx6sQHnU+1qlEpLx5CMQ/S1g075HqQH8qp7bvcnQENrXN2meg SeSbFgyso1pOccz7lr9XVM0YmmbmJQa3ZuIeHT23ABu7gApkc/PBrj6cN rKoBNH4ODp0xXZ4Ft934AlzM8XTYBvQ2OjYS+pwW0Xrsq5Pd3i6YVLYra 8URljdedGy0XypGKGwOw6HOnP5pxjptWA29+B65lRC7zRI92h6oqvine5 4Ba9n64TVjk01OKo0qY2jzhvpiR57ckp4ok1S0pfYAwY0wQrW0rvPCKCX pBFm62TBqvZV+cYpTrr0Q4bMj64Px+HYYrrCoSmajqzz2vSr4a2+k41DL w==; X-IronPort-AV: E=McAfee;i="6600,9927,10827"; a="441650057" X-IronPort-AV: E=Sophos;i="6.02,237,1688454000"; d="scan'208";a="441650057" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Sep 2023 05:24:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10827"; a="692244220" X-IronPort-AV: E=Sophos;i="6.02,237,1688454000"; d="scan'208";a="692244220" Received: from akorchin-mobl1.ger.corp.intel.com (HELO jhogande-mobl1.ger.corp.intel.com) ([10.252.62.73]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Sep 2023 05:24:44 -0700 From: =?UTF-8?q?Jouni=20H=C3=B6gander?= To: intel-xe@lists.freedesktop.org Date: Fri, 8 Sep 2023 15:24:12 +0300 Message-Id: <20230908122415.1886366-9-jouni.hogander@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230908122415.1886366-1-jouni.hogander@intel.com> References: <20230908122415.1886366-1-jouni.hogander@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Content-Transfer-Encoding: 8bit Subject: [Intel-xe] [PATCH v2 08/11] drm/xe/display: Include i916_active header X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?UTF-8?q?Jouni=20H=C3=B6gander?= Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" We have compatibility headers containing dummy defines to handle lack of i915_active in Xe driver. Include a header to avoid build problems with Xe. Signed-off-by: Jouni Högander --- drivers/gpu/drm/i915/display/intel_frontbuffer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/i915/display/intel_frontbuffer.c b/drivers/gpu/drm/i915/display/intel_frontbuffer.c index b7b11e74d796..6d57336e63ff 100644 --- a/drivers/gpu/drm/i915/display/intel_frontbuffer.c +++ b/drivers/gpu/drm/i915/display/intel_frontbuffer.c @@ -55,6 +55,7 @@ * cancelled as soon as busyness is detected. */ +#include "i915_active.h" #include "i915_drv.h" #include "intel_display_trace.h" #include "intel_display_types.h" -- 2.34.1