Skip to content
Snippets Groups Projects
Commit 3b6351a4 authored by Chunfeng Yun's avatar Chunfeng Yun Committed by Tom Rini
Browse files

phy: phy-mtk-tphy: remove the check of -ENOSYS


No need check -ENOSYS anymore after add dummy_enable() for
fixed-clock.

Signed-off-by: default avatarChunfeng Yun <chunfeng.yun@mediatek.com>
Reviewed-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarRyder Lee <ryder.lee@mediatek.com>
parent 6bf6d81c
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment