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 360DEC25B47 for ; Wed, 25 Oct 2023 09:35:21 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7D4D610E082; Wed, 25 Oct 2023 09:35:20 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4EC3F10E082 for ; Wed, 25 Oct 2023 09:35:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1698226517; x=1729762517; h=message-id:date:mime-version:subject:to:references:from: in-reply-to:content-transfer-encoding; bh=qSBVcC0TelxlZybDne+Uf0e+XUAZkqo/60p05ahnX3o=; b=CaLllK5dMxHfViI+BExyvDJ4Sc8vhSMyFnDDmps9CPpPeO7RmYyfZCK7 LePH2YXS7Aw9Y+EHIeAZCLqZe0gtsyE0iboYc+UQ2zKH2NE6ujVOjAh/z +A+lkGAu5umDm4gSP7ML/rxRWdY8SP8ZKMx1bFLWtmZjanicbDUlReQGO 8IK2s6zeIkianiM7Wf7rZPjRVqllwmxQv267pmksjnza2+4+M8qktpd1E +dezIgP1RBz1ANhbJpOJfuONLeGsLMlgkAqziAN6KQMvyJGPu4nZSaAFH ri4mUpaYTKD3KxPCcnOpT5+txLugGItJvFSN3KRwbC2GhQmzUPVolnKno w==; X-IronPort-AV: E=McAfee;i="6600,9927,10873"; a="384482960" X-IronPort-AV: E=Sophos;i="6.03,250,1694761200"; d="scan'208";a="384482960" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Oct 2023 02:35:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10873"; a="882400117" X-IronPort-AV: E=Sophos;i="6.03,250,1694761200"; d="scan'208";a="882400117" Received: from nirmoyda-mobl.ger.corp.intel.com (HELO [10.252.48.142]) ([10.252.48.142]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Oct 2023 02:35:14 -0700 Message-ID: Date: Wed, 25 Oct 2023 11:35:11 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.15.1 Content-Language: en-US To: Jani Nikula , intel-gfx@lists.freedesktop.org References: <20231024130448.576297-1-jani.nikula@intel.com> <20231024130448.576297-2-jani.nikula@intel.com> From: Nirmoy Das In-Reply-To: <20231024130448.576297-2-jani.nikula@intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Intel-gfx] [PATCH 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: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On 10/24/2023 3:04 PM, Jani Nikula wrote: > Keep the display build lists together. > > Signed-off-by: Jani Nikula > --- > drivers/gpu/drm/i915/Makefile | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile > index bc785dd89c19..e92682424915 100644 > --- a/drivers/gpu/drm/i915/Makefile > +++ b/drivers/gpu/drm/i915/Makefile > @@ -95,9 +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_pipe_crc.o > + i915_debugfs_params.o > i915-$(CONFIG_PERF_EVENTS) += \ > i915_pmu.o > > @@ -318,6 +316,9 @@ 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_pipe_crc.o From a quick look, I am not sure how this file is related to debugfs. I will try to find out but that is unrelated to this patch so Reviewed-by: Nirmoy Das > > # modesetting output/encoder code > i915-y += \