mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
drivers/net/ethernet/renesas: don't check resource with devm_ioremap_resource
devm_ioremap_resource does sanity checks on the given resource. No need to duplicate this in the driver. Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
e222a6eb77
commit
042c730aa1
@ -2745,11 +2745,6 @@ static int sh_eth_drv_probe(struct platform_device *pdev)
|
||||
if (mdp->cd->tsu) {
|
||||
struct resource *rtsu;
|
||||
rtsu = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
||||
if (!rtsu) {
|
||||
dev_err(&pdev->dev, "Not found TSU resource\n");
|
||||
ret = -ENODEV;
|
||||
goto out_release;
|
||||
}
|
||||
mdp->tsu_addr = devm_ioremap_resource(&pdev->dev, rtsu);
|
||||
if (IS_ERR(mdp->tsu_addr)) {
|
||||
ret = PTR_ERR(mdp->tsu_addr);
|
||||
|
Loading…
Reference in New Issue
Block a user