Quoting Manuel Lauss (2014-06-29 09:57:35) > Expose chip-internal configurable clocks to the common clk framework, > and fix a few drivers to take advantage of it. Thanks for the patch series! Both patches cover a lot of ground, but I'll focus on #2. It would be best to split the driver changes out separately. You can introduce the common clk changes but not compile them in, then change the drivers, then add the logic to compile the new common clock driver all as separate patches. <snip> > diff --git a/arch/mips/alchemy/common/Makefile b/arch/mips/alchemy/common/Makefile > index cb83d8d..2e4d505 100644 > --- a/arch/mips/alchemy/common/Makefile > +++ b/arch/mips/alchemy/common/Makefile > @@ -5,7 +5,7 @@ > # Makefile for the Alchemy Au1xx0 CPUs, generic files. > # > > -obj-y += prom.o time.o clocks.o platform.o power.o setup.o \ > +obj-y += prom.o time.o clock.o platform.o power.o setup.o \ > sleeper.o dma.o dbdma.o vss.o irq.o usb.o As stated above, in the first patch only introduce arch/mips/alchemy/common/clock, but don't compile it here in the Makefile. A quick glance through clock.c below looks pretty good. I'll go through it in more detail once the other parts of the series are split out. Additionally, it would be cool to push this driver out to drivers/clk/ if you are so inclined. It looks like your header dependencies are not so bad as to make that task impossible. Just a suggestion from me. Regards, Mike