1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 13:41:32 +02:00

jz4740: clock.c: Add missing enable/disable callbacks for i2s clock.

This commit is contained in:
Lars-Peter Clausen 2010-01-11 03:17:49 +01:00
parent 8932999d6e
commit 6e9f8f83c3

View File

@ -524,9 +524,11 @@ static struct divided_clk jz_clk_i2s = {
.name = "i2s",
.parent = &jz_clk_ext.clk,
.gate_bit = JZ_CLOCK_GATE_AIC,
.set_parent = jz_clk_i2s_set_parent,
.set_rate = jz_clk_divided_set_rate,
.get_rate = jz_clk_divided_get_rate,
.enable = jz_clk_enable_gating,
.disable = jz_clk_disable_gating,
.set_parent = jz_clk_i2s_set_parent,
},
.reg = JZ_REG_CLOCK_I2S,
.mask = JZ_CLOCK_I2S_DIV_MASK,