Drop dev_get_mem_region_by_name() which doesn't seem to have any users in the codebase. Signed-off-by: Andrey Smirnov <andrew.smirnov@xxxxxxxxx> --- drivers/base/driver.c | 12 ------------ include/driver.h | 4 ---- 2 files changed, 16 deletions(-) diff --git a/drivers/base/driver.c b/drivers/base/driver.c index c74fee99f..22ca96d7e 100644 --- a/drivers/base/driver.c +++ b/drivers/base/driver.c @@ -373,18 +373,6 @@ struct resource *dev_get_resource_by_name(struct device_d *dev, return ERR_PTR(-ENOENT); } -void *dev_get_mem_region_by_name(struct device_d *dev, const char *name) -{ - struct resource *res; - - res = dev_get_resource_by_name(dev, IORESOURCE_MEM, name); - if (IS_ERR(res)) - return ERR_CAST(res); - - return (void __force *)res->start; -} -EXPORT_SYMBOL(dev_get_mem_region_by_name); - void __iomem *dev_request_mem_region_by_name(struct device_d *dev, const char *name) { struct resource *res; diff --git a/include/driver.h b/include/driver.h index db844aed3..7da184d3a 100644 --- a/include/driver.h +++ b/include/driver.h @@ -201,10 +201,6 @@ struct resource *dev_get_resource(struct device_d *dev, unsigned long type, struct resource *dev_get_resource_by_name(struct device_d *dev, unsigned long type, const char *name); -/* - * get register base 'name' for a device - */ -void *dev_get_mem_region_by_name(struct device_d *dev, const char *name); /* * exlusively request register base 'name' for a device -- 2.17.1 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox