Commit fb602b30 authored by Dejin Zheng's avatar Dejin Zheng Committed by Felix Fietkau

mt76: mt7603: remove duplicate error message

it will print an error message by itself when
devm_platform_ioremap_resource() goes wrong. so remove the duplicate
error message.
Signed-off-by: default avatarDejin Zheng <zhengdejin5@gmail.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 89f8bc6a
...@@ -20,10 +20,8 @@ mt76_wmac_probe(struct platform_device *pdev) ...@@ -20,10 +20,8 @@ mt76_wmac_probe(struct platform_device *pdev)
return irq; return irq;
mem_base = devm_platform_ioremap_resource(pdev, 0); mem_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(mem_base)) { if (IS_ERR(mem_base))
dev_err(&pdev->dev, "Failed to get memory resource\n");
return PTR_ERR(mem_base); return PTR_ERR(mem_base);
}
mdev = mt76_alloc_device(&pdev->dev, sizeof(*dev), &mt7603_ops, mdev = mt76_alloc_device(&pdev->dev, sizeof(*dev), &mt7603_ops,
&mt7603_drv_ops); &mt7603_drv_ops);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment