[PATCH 1/4] cpufreq: Add a cpufreq driver for Marvell Dove
Andrew Lunn
andrew at lunn.ch
Wed Oct 23 09:51:16 EDT 2013
On Wed, Oct 23, 2013 at 07:10:41PM +0530, Viresh Kumar wrote:
> On 23 October 2013 18:34, Andrew Lunn <andrew at lunn.ch> wrote:
> > The Marvell Dove SoC can run the CPU at two frequencies. The high
> > frequencey is from a PLL, while the lower is the same as the DDR
> > clock. Add a cpufreq driver to swap between these frequences.
> >
> > Signed-off-by: Andrew Lunn <andrew at lunn.ch>
> > Tested-by: Sebastian Hesselbarth <sebastian.hesselbarth at gmail.com>
> > ---
> > Sort header files
> > Comment the interrupt handler
>
> Really? I don't see these two comments being incorporated..
> Also, you would be required to update your patchset ones my
> patches are in (And that will happen for v3.13)..
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/clk.h>
+#include <linux/cpu.h>
+#include <linux/cpufreq.h>
+#include <linux/interrupt.h>
+#include <linux/io.h>
+#include <linux/of.h>
+#include <linux/of_irq.h>
+#include <linux/platform_device.h>
+#include <asm/proc-fns.h>
There does seem to be a convention that kernel.h and module.h come
first, and then i have the rest in order.
+/*
+ * Handle the interrupt raised when the frequency change is
+ * complete.
+ */
+static irqreturn_t dove_cpufreq_irq(int irq, void *dev)
+{
+ return IRQ_HANDLED;
+}
What more would you like to see in the comment?
Thanks
Andrew
More information about the linux-arm-kernel
mailing list