mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-10 11:28:02 +07:00
dm9000: Use resource_size instead of private macro
The macro res_size in drivers/net/dm9000.c is a copy of resource_size in linux/ioport.h. Remove the function and use resource_size instead. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
07fcb044b6
commit
ec282e9225
@ -1251,8 +1251,6 @@ static const struct net_device_ops dm9000_netdev_ops = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#define res_size(_r) (((_r)->end - (_r)->start) + 1)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Search DM9000 board, allocate space and register it
|
* Search DM9000 board, allocate space and register it
|
||||||
*/
|
*/
|
||||||
@ -1301,7 +1299,7 @@ dm9000_probe(struct platform_device *pdev)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
iosize = res_size(db->addr_res);
|
iosize = resource_size(db->addr_res);
|
||||||
db->addr_req = request_mem_region(db->addr_res->start, iosize,
|
db->addr_req = request_mem_region(db->addr_res->start, iosize,
|
||||||
pdev->name);
|
pdev->name);
|
||||||
|
|
||||||
@ -1319,7 +1317,7 @@ dm9000_probe(struct platform_device *pdev)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
iosize = res_size(db->data_res);
|
iosize = resource_size(db->data_res);
|
||||||
db->data_req = request_mem_region(db->data_res->start, iosize,
|
db->data_req = request_mem_region(db->data_res->start, iosize,
|
||||||
pdev->name);
|
pdev->name);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user