From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Hilman Subject: Re: [PATCH 02/10] cpufreq: OMAP: Add SMP support for OMAP4+ Date: Thu, 22 Sep 2011 16:11:38 -0700 Message-ID: <87sjnonped.fsf@ti.com> References: <1316725648-26710-1-git-send-email-khilman@ti.com> <1316725648-26710-3-git-send-email-khilman@ti.com> Mime-Version: 1.0 Return-path: In-Reply-To: <1316725648-26710-3-git-send-email-khilman@ti.com> (Kevin Hilman's message of "Thu, 22 Sep 2011 14:07:20 -0700") Sender: cpufreq-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: cpufreq@vger.kernel.org Cc: Dave Jones , Nishanth Menon , linux-omap@vger.kernel.org, Santosh Shilimkar , linux-arm-kernel@lists.infradead.org, Rajendra Nayak Kevin Hilman writes: > From: Russell King > > On OMAP SMP configuartion, both processors share the voltage > and clock. So both CPUs needs to be scaled together and hence > needs software co-ordination. [...] > diff --git a/drivers/cpufreq/omap-cpufreq.c b/drivers/cpufreq/omap-cpufreq.c > index a6b2be7..f9b4c4d 100644 > --- a/drivers/cpufreq/omap-cpufreq.c > +++ b/drivers/cpufreq/omap-cpufreq.c > @@ -23,6 +23,7 @@ > #include > #include > #include > +#include > > #include > #include Thanks to checkpatch, I blindly removed an "#include " here without re-testing. Turns out it was important. Added it back, and updated the version available in my for_3.2/omap-cpufreq branch. Kevin