Hello Mike, This series add support for the clocks present in the Maxim 77802 Power Managment IC. Previously, the series was part of a bigger one [0] that aimed to add support for all the devices in the max77802 PMIC. But now the Maxim 77802 PMIC dependencies were already merged for 3.17 so the series can be split and each driver can go through the relevant tree. The support needed for the clocks in the max77802 is very similar to the one for the ones in the max77686 so a generic driver was added that allows to remove the duplicated code for both drivers. Patch 01/06 adds a dt binding include that can be used to share the max77686 clocks between the driver and the DTS files. Patch 02/06 adds the generic clock driver for maxim pmic clocks and patch 03/06 converts the existing max77686 clock driver to the generic one. Patch 04/06 adds some improvements to the max77686 clock driver DT binding. Patch 05/06 adds the max77802 clock driver and finally patch 06/06 adds the DT binding documentation for this driver. I kept the version numbering from the old series so this is version 9 although there were no changes on the max77802 clock driver since v5 of the old series and all the patches had been already acked by you so I hope there won't be issues to get them merged. The series were tested on an Exynos5250 Snow (max77686) and Exynos5420 Peach Pit (max77802) machines and applies cleanly to both 3.17-rc1 and today's linux-next (20140818). Javier Martinez Canillas (6): clk: max77686: Add DT include for MAX77686 PMIC clock clk: Add generic driver for Maxim PMIC clocks clk: max77686: Convert to the generic max clock driver clk: max77686: Improve Maxim 77686 PMIC clocks binding clk: Add driver for Maxim 77802 PMIC clocks clk: max77802: Add DT binding documentation .../devicetree/bindings/clock/maxim,max77686.txt | 16 +- .../devicetree/bindings/clock/maxim,max77802.txt | 44 +++++ drivers/clk/Kconfig | 11 ++ drivers/clk/Makefile | 2 + drivers/clk/clk-max-gen.c | 192 +++++++++++++++++++++ drivers/clk/clk-max-gen.h | 32 ++++ drivers/clk/clk-max77686.c | 183 +------------------- drivers/clk/clk-max77802.c | 98 +++++++++++ include/dt-bindings/clock/maxim,max77686.h | 23 +++ include/dt-bindings/clock/maxim,max77802.h | 22 +++ 10 files changed, 445 insertions(+), 178 deletions(-) create mode 100644 Documentation/devicetree/bindings/clock/maxim,max77802.txt create mode 100644 drivers/clk/clk-max-gen.c create mode 100644 drivers/clk/clk-max-gen.h create mode 100644 drivers/clk/clk-max77802.c create mode 100644 include/dt-bindings/clock/maxim,max77686.h create mode 100644 include/dt-bindings/clock/maxim,max77802.h Best regards, Javier -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html