aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-s3c2442/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-s3c2442/clock.c')
-rw-r--r--arch/arm/mach-s3c2442/clock.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c2442/clock.c b/arch/arm/mach-s3c2442/clock.c
index ea1aa1f5157..d9b692a1248 100644
--- a/arch/arm/mach-s3c2442/clock.c
+++ b/arch/arm/mach-s3c2442/clock.c
@@ -109,8 +109,10 @@ static struct clk s3c2442_clk_cam = {
static struct clk s3c2442_clk_cam_upll = {
.name = "camif-upll",
.id = -1,
- .set_rate = s3c2442_camif_upll_setrate,
- .round_rate = s3c2442_camif_upll_round,
+ .ops = &(struct clk_ops) {
+ .set_rate = s3c2442_camif_upll_setrate,
+ .round_rate = s3c2442_camif_upll_round,
+ },
};
static int s3c2442_clk_add(struct sys_device *sysdev)