From patchwork Thu Oct 26 10:13:33 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jani Nikula X-Patchwork-Id: 13437445 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 64A29C25B6B for ; Thu, 26 Oct 2023 10:13:48 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0975B10E7A0; Thu, 26 Oct 2023 10:13:48 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by gabe.freedesktop.org (Postfix) with ESMTPS id C62F410E7A0 for ; Thu, 26 Oct 2023 10:13:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1698315224; x=1729851224; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=AOXVrBncuZl4pswmMDXpEP0/CPxT6w2NrNVCWGooZwM=; b=nlquqrRUMKr4HqP7v7nWD+N2DrMEijV3d20PiNj4U3WoeqtoD7ZXh6an kxOYAVha1eIy/VW7JGnmvxMttzsQtBkp4Si2koK+QrMPeafORjBFkDWRz 9A2DFjc8KiILjYJYedv6+W2SKydHZGUIdYkVWKKDCg52PIg0IXjAiNLlG NDGTrmdJ7WVU9oMIgcomv5t/4YONRIRdsNzvWNhHwrGCdRItUmKEtoCri 4JYohDgKi39p/kzwfW2lob/t1z109MSVunG6EYSKNiqxykIsVELhdqKWI tudpdWEgqRt6c+YmitMErKbBNqf5M1ZS8yAsp0yttSYLVGiYKDPte9u7X Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10874"; a="9061515" X-IronPort-AV: E=Sophos;i="6.03,253,1694761200"; d="scan'208";a="9061515" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2023 03:13:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10874"; a="1090553954" X-IronPort-AV: E=Sophos;i="6.03,253,1694761200"; d="scan'208";a="1090553954" Received: from tzirr-desk2.ger.corp.intel.com (HELO localhost) ([10.252.49.68]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2023 03:13:42 -0700 From: Jani Nikula To: intel-gfx@lists.freedesktop.org Date: Thu, 26 Oct 2023 13:13:33 +0300 Message-Id: <20231026101333.875406-2-jani.nikula@intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231026101333.875406-1-jani.nikula@intel.com> References: <20231026101333.875406-1-jani.nikula@intel.com> MIME-Version: 1.0 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Subject: [Intel-gfx] [CI 2/2] drm/i915: move Makefile display debugfs files next to display 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, Nirmoy Das Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Keep the display build lists together. v2: Rebase Reviewed-by: Nirmoy Das Signed-off-by: Jani Nikula --- drivers/gpu/drm/i915/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index d1f53dbf95f2..239da40a401f 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -95,10 +95,7 @@ i915-$(CONFIG_COMPAT) += \ i915_ioc32.o i915-$(CONFIG_DEBUG_FS) += \ i915_debugfs.o \ - i915_debugfs_params.o \ - display/intel_display_debugfs.o \ - display/intel_display_debugfs_params.o \ - display/intel_pipe_crc.o + i915_debugfs_params.o i915-$(CONFIG_PERF_EVENTS) += \ i915_pmu.o @@ -320,6 +317,10 @@ i915-$(CONFIG_ACPI) += \ display/intel_opregion.o i915-$(CONFIG_DRM_FBDEV_EMULATION) += \ display/intel_fbdev.o +i915-$(CONFIG_DEBUG_FS) += \ + display/intel_display_debugfs.o \ + display/intel_display_debugfs_params.o \ + display/intel_pipe_crc.o # modesetting output/encoder code i915-y += \