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 82574C77B60 for ; Wed, 26 Apr 2023 20:40:35 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D7A4B10E0F1; Wed, 26 Apr 2023 20:40:33 +0000 (UTC) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by gabe.freedesktop.org (Postfix) with ESMTPS id 1D2A910E06E; Wed, 26 Apr 2023 20:40:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1682541632; x=1714077632; h=date:message-id:from:to:cc:subject:in-reply-to: references:mime-version:content-transfer-encoding; bh=gVCoQq5HMPvlESM4Uv6gs4SgxdNV8HGNrYrHE+hyhuE=; b=lG/1Q4jndde9xpQKozcQX0YmIL/oOjcdsB1+hvxMRryNSy8P3LeX6jFf RqnJUF6JCLc5/yDLB8NS1pkLx3HHXpTDdjqjUZyhon5oCr1aq2yxTxiL2 yL/6AyeHvfsdFNoSFSnyB8ldCHIYwiNHxRGDnSix5TlwX5hu+cOP8C/V/ znql/z9kpfYlTK4kXr5zHzpSOWz4OavBuNp3117VNcIIJqZjMgzKiZucb WjbEJ2Ga2VMJb9eGqpHQT7YRYGY/l7bmC6KzKfnaLJf6Gjaq6LmmpKEcE BjcvqJOHOJvOz7KvE6v/fNkL62GAHCjoFv77seI9x2RM9bELHPTDEdzfO g==; X-IronPort-AV: E=McAfee;i="6600,9927,10692"; a="375199689" X-IronPort-AV: E=Sophos;i="5.99,229,1677571200"; d="scan'208";a="375199689" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Apr 2023 13:40:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10692"; a="644401981" X-IronPort-AV: E=Sophos;i="5.99,229,1677571200"; d="scan'208";a="644401981" Received: from adixit-mobl.amr.corp.intel.com (HELO adixit-arch.intel.com) ([10.212.242.96]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Apr 2023 13:40:30 -0700 Date: Wed, 26 Apr 2023 13:40:28 -0700 Message-ID: <87a5yu9y2r.wl-ashutosh.dixit@intel.com> From: "Dixit, Ashutosh" To: Vinay Belgaumkar In-Reply-To: <20230425162405.1730513-4-vinay.belgaumkar@intel.com> References: <20230425162405.1730513-1-vinay.belgaumkar@intel.com> <20230425162405.1730513-4-vinay.belgaumkar@intel.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM-LB/1.14.9 (=?ISO-8859-4?Q?Goj=F2?=) APEL-LB/10.8 EasyPG/1.0.0 Emacs/28.2 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [Intel-gfx] [igt-dev] [PATCH i-g-t 3/4] i915_pm_freq_api: Add some basic SLPC igt tests 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: igt-dev@lists.freedesktop.org, intel-gfx@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On Tue, 25 Apr 2023 09:24:04 -0700, Vinay Belgaumkar wrote: > > diff --git a/tests/i915/i915_pm_freq_api.c b/tests/i915/i915_pm_freq_api.c > new file mode 100644 > index 00000000..17adacbc > --- /dev/null > +++ b/tests/i915/i915_pm_freq_api.c > @@ -0,0 +1,153 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright =A9 2023 Intel Corporation > + */ > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +#include "drmtest.h" The series is merged but before merging I removed all the #include's above, they are not needed. > +#include "i915/gem.h" > +#include "igt_sysfs.h" > +#include "igt.h" Thanks. -- Ashutosh