From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 1386020E709; Fri, 10 Jan 2025 14:43:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736520200; cv=none; b=ahQnxFu7sJFWAUtdsMlpu+KqKZvrO07acnfGU8QhfIYC+JAqZF1CiVBYQrlSj+UXCGEkD99venM4W64HoS+7epddh3LO6wzZPqKs1ShnVhvxLaggPGiF0cEVRtVAtMem7yUp2cPFw/VF4zNxEsJ9iMD/vNkmwW7n5UYlG31vjcg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736520200; c=relaxed/simple; bh=nIMz0d9P6zrHS8PFXzTOS07bZr4FkJ5AhzqfSDFr8N8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=EiqN4kqZj9wea+v57v3kPQSpfKIBEtXryo58Wbw8VLVIIlpDEM36YKB4zQE4UglBW0H1qK9CCBDbeOdUYVetzhaz3B/be4zhgT66SOOHPQi1oJyDHaniBU6Icr2WyEu/Qv4Uy7HF48spLrTmLGkvmkr4uqKat9yqKqDiZrYnBgo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 9C1431477; Fri, 10 Jan 2025 06:43:45 -0800 (PST) Received: from bogus (e133711.arm.com [10.1.196.55]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id DB4A13F59E; Fri, 10 Jan 2025 06:43:15 -0800 (PST) Date: Fri, 10 Jan 2025 14:43:13 +0000 From: Sudeep Holla To: Viresh Kumar Cc: "Rafael J. Wysocki" , Sunil V L , Palmer Dabbelt , Pierre Gondois , linux-pm@vger.kernel.org, Sudeep Holla , Vincent Guittot , linux-kernel@vger.kernel.org Subject: Re: [PATCH] cpufreq: Move endif to the end of Kconfig file Message-ID: References: <84ac7a8fa72a8fe20487bb0a350a758bce060965.1736488384.git.viresh.kumar@linaro.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <84ac7a8fa72a8fe20487bb0a350a758bce060965.1736488384.git.viresh.kumar@linaro.org> On Fri, Jan 10, 2025 at 11:23:10AM +0530, Viresh Kumar wrote: > It is possible to enable few cpufreq drivers, without the framework > being enabled. This happened due to a bug while moving the entries > earlier. Fix it. > Surprising to see how randconfigs has not managed to catch this so far. Anyways, Reviewed-by: Sudeep Holla > Fixes: 7ee1378736f0 ("cpufreq: Move CPPC configs to common Kconfig and add RISC-V") > Signed-off-by: Viresh Kumar > --- > drivers/cpufreq/Kconfig | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig > index ea9afdc119fb..d64b07ec48e5 100644 > --- a/drivers/cpufreq/Kconfig > +++ b/drivers/cpufreq/Kconfig > @@ -325,8 +325,6 @@ config QORIQ_CPUFREQ > This adds the CPUFreq driver support for Freescale QorIQ SoCs > which are capable of changing the CPU's frequency dynamically. > > -endif > - > config ACPI_CPPC_CPUFREQ > tristate "CPUFreq driver based on the ACPI CPPC spec" > depends on ACPI_PROCESSOR > @@ -355,4 +353,6 @@ config ACPI_CPPC_CPUFREQ_FIE > > If in doubt, say N. > > +endif > + > endmenu > -- > 2.31.1.272.g89b43f80a514 > -- Regards, Sudeep