mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
rockchip: video: Correct VOP clock selection
This code incorrectly uses the oscillator. It should use the clock
selected in the device tree.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 135aa95
(clk: convert API to match reset/mailbox style)
This commit is contained in:
parent
e4ab3d712a
commit
9ed6826060
1 changed files with 1 additions and 6 deletions
|
@ -195,7 +195,6 @@ int rk_display_init(struct udevice *dev, ulong fbbase,
|
|||
struct udevice *disp;
|
||||
int ret, remote, i, offset;
|
||||
struct display_plat *disp_uc_plat;
|
||||
struct udevice *dev_clk;
|
||||
struct clk clk;
|
||||
|
||||
vop_id = fdtdec_get_int(blob, ep_node, "reg", -1);
|
||||
|
@ -238,11 +237,7 @@ int rk_display_init(struct udevice *dev, ulong fbbase,
|
|||
return ret;
|
||||
}
|
||||
|
||||
ret = rockchip_get_clk(&dev_clk);
|
||||
if (!ret) {
|
||||
clk.id = DCLK_VOP0 + remote_vop_id;
|
||||
ret = clk_request(dev_clk, &clk);
|
||||
}
|
||||
ret = clk_get_by_index(dev, 1, &clk);
|
||||
if (!ret)
|
||||
ret = clk_set_rate(&clk, timing.pixelclock.typ);
|
||||
if (ret) {
|
||||
|
|
Loading…
Reference in a new issue