Message ID | 1578540910-3516-6-git-send-email-chunfeng.yun@mediatek.com |
---|---|
State | Accepted |
Commit | 3b6351a47594d1f97d63085b7dac9fbae1e7aabe |
Headers | show |
Series | [v2,1/7] clk: mediatek: mt7629: add support for ssusbsys | expand |
On Thu, Jan 09, 2020 at 11:35:09AM +0800, Chunfeng Yun wrote: > No need check -ENOSYS anymore after add dummy_enable() for > fixed-clock. > > Signed-off-by: Chunfeng Yun <chunfeng.yun at mediatek.com> > Reviewed-by: Simon Glass <sjg at chromium.org> > Reviewed-by: Ryder Lee <ryder.lee at mediatek.com> Applied to u-boot/master, thanks!
diff --git a/drivers/phy/phy-mtk-tphy.c b/drivers/phy/phy-mtk-tphy.c index 3701481256..c4fb404f20 100644 --- a/drivers/phy/phy-mtk-tphy.c +++ b/drivers/phy/phy-mtk-tphy.c @@ -204,9 +204,8 @@ static int mtk_phy_init(struct phy *phy) struct mtk_phy_instance *instance = tphy->phys[phy->id]; int ret; - /* we may use a fixed-clock here */ ret = clk_enable(&instance->ref_clk); - if (ret && ret != -ENOSYS) + if (ret) return ret; switch (instance->type) {