diff options
author | Jonghwa Lee <jonghwa3.lee@samsung.com> | 2012-08-28 04:54:28 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-09-06 19:55:38 -0400 |
commit | 73118e6188c23719eeec3560b7fd1ca76f1a0919 (patch) | |
tree | 9ba71716e05b80ea173383473cb18c4f1a14d776 /drivers/clk/Makefile | |
parent | ebc96db7632f987e0b9bffcb782cf5cfb8afb0dd (diff) |
clock: max77686: Add driver for Maxim 77686 32Khz crystal oscillator.
This patch supports max77686 mfd's clock driver using common clock frame work.
max77686 has 3 clock ouputs which all are generated from crystal oscillator and
SOC can enable/disable them via I2C bus. All clocks are fixed-rate clock sources
so that it doesn't supply interface for changing clock rate.
Driver uses regmap API to communicate with internal register.
Signed-off-by: Jonghwa Lee <jonghwa3.lee@samsung.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/Makefile')
-rw-r--r-- | drivers/clk/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index d561825a87fc..6327536b4900 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile | |||
@@ -19,3 +19,4 @@ obj-$(CONFIG_ARCH_U8500) += ux500/ | |||
19 | 19 | ||
20 | # Chip specific | 20 | # Chip specific |
21 | obj-$(CONFIG_COMMON_CLK_WM831X) += clk-wm831x.o | 21 | obj-$(CONFIG_COMMON_CLK_WM831X) += clk-wm831x.o |
22 | obj-$(CONFIG_COMMON_CLK_MAX77686) += clk-max77686.o | ||