Re: [PATCH 1/7] clk: samsung: add plls used in s3c2416 and s3c2443

2013-03-12 Thread Russell King - ARM Linux
On Tue, Mar 12, 2013 at 01:42:19AM +0100, Heiko Stübner wrote: + clk = clk_register(NULL, pll-hw); + if (IS_ERR(clk)) { + pr_err(%s: failed to register pll clock %s\n, __func__, + name); + kfree(pll); + } + + if

Re: [PATCH 1/7] clk: samsung: add plls used in s3c2416 and s3c2443

2013-03-12 Thread Heiko Stübner
Am Dienstag, 12. März 2013, 13:10:42 schrieb Sylwester Nawrocki: Hi, On 03/12/2013 01:42 AM, Heiko Stübner wrote: This adds support for pll2126x, pll3000x, pll6552x and pll6553x. Signed-off-by: Heiko Stuebner he...@sntech.de --- drivers/clk/samsung/clk-pll.c | 376

Re: [PATCH 1/7] clk: samsung: add plls used in s3c2416 and s3c2443

2013-03-12 Thread Sylwester Nawrocki
On 03/12/2013 01:21 PM, Heiko Stübner wrote: Thanks for the hint ... this is what I rightfully get for mindlessly copying from the other plls in the file;-) . :) What about the other plls in the pll-file, they should be affected in the same way, right? Yes, they're of course also

[PATCH 1/7] clk: samsung: add plls used in s3c2416 and s3c2443

2013-03-11 Thread Heiko Stübner
This adds support for pll2126x, pll3000x, pll6552x and pll6553x. Signed-off-by: Heiko Stuebner he...@sntech.de --- drivers/clk/samsung/clk-pll.c | 376 + drivers/clk/samsung/clk-pll.h |8 + 2 files changed, 384 insertions(+), 0 deletions(-) diff