From: Thomas Meyer <thomas@xxxxxxxx> Use resource_size function on resource object instead of explicit computation. The semantic patch that makes this change is available in scripts/coccinelle/api/resource_size.cocci. More information about semantic patching is available at http://coccinelle.lip6.fr/ Signed-off-by: Thomas Meyer <thomas@xxxxxxxx> --- diff -u -p a/drivers/usb/host/ohci-xls.c b/drivers/usb/host/ohci-xls.c --- a/drivers/usb/host/ohci-xls.c 2011-11-07 19:38:15.467036480 +0100 +++ b/drivers/usb/host/ohci-xls.c 2011-11-08 12:13:16.922398086 +0100 @@ -40,7 +40,7 @@ static int ohci_xls_probe_internal(const goto err1; } hcd->rsrc_start = res->start; - hcd->rsrc_len = res->end - res->start + 1; + hcd->rsrc_len = resource_size(res); if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, driver->description)) { -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html