aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c2410/clock.h
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2006-03-20 21:00:08 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-03-21 22:06:18 +0000
commit6e8908edd5a140f4f0cc4338fa0420b0bb0f8efa (patch)
treef428e1725b3ee7fd295077b90d3fd491c2c61b30 /arch/arm/mach-s3c2410/clock.h
parent[ARM] Convert kmalloc+memset to kzalloc (diff)
downloadlinux-dev-6e8908edd5a140f4f0cc4338fa0420b0bb0f8efa.tar.xz
linux-dev-6e8908edd5a140f4f0cc4338fa0420b0bb0f8efa.zip
[ARM] 3359/1: S3C24XX - add support for clk_set_rate
Patch from Ben Dooks Add support for clk_set_rate and clk_round_rate to the s3c2410 clock implementation Signed-off-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/clock.h')
-rw-r--r--arch/arm/mach-s3c2410/clock.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2410/clock.h b/arch/arm/mach-s3c2410/clock.h
index c4f36f006496..32864b30c1e0 100644
--- a/arch/arm/mach-s3c2410/clock.h
+++ b/arch/arm/mach-s3c2410/clock.h
@@ -21,6 +21,8 @@ struct clk {
unsigned long ctrlbit;
int (*enable)(struct clk *, int enable);
+ int (*set_rate)(struct clk *c, unsigned long rate);
+ unsigned long (*round_rate)(struct clk *c, unsigned long rate);
int (*set_parent)(struct clk *c, struct clk *parent);
};