diff options
| author | Jingoo Han <jg1.han@samsung.com> | 2014-06-11 14:00:05 +0900 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-06-19 20:01:36 -0700 | 
| commit | c9d53c0f2d23c792e4b9cf1551b63de4516f839e (patch) | |
| tree | 0d3c822d06e99c37998aaa89a86696ba800871fb /lib/devres.c | |
| parent | 7171511eaec5bf23fb06078f59784a3a0626b38f (diff) | |
devres: remove devm_request_and_ioremap()
devm_request_and_ioremap() was obsoleted by the commit 7509657
("lib: devres: Introduce devm_ioremap_resource()") and has been
deprecated for a long time. So, let's remove this function.
In addition, all usages of devm_request_and_ioremap() are also
removed.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib/devres.c')
| -rw-r--r-- | lib/devres.c | 28 | 
1 files changed, 0 insertions, 28 deletions
| diff --git a/lib/devres.c b/lib/devres.c index f562bf6ff71d..6a4aee8a3a7e 100644 --- a/lib/devres.c +++ b/lib/devres.c @@ -142,34 +142,6 @@ void __iomem *devm_ioremap_resource(struct device *dev, struct resource *res)  }  EXPORT_SYMBOL(devm_ioremap_resource); -/** - * devm_request_and_ioremap() - Check, request region, and ioremap resource - * @dev: Generic device to handle the resource for - * @res: resource to be handled - * - * Takes all necessary steps to ioremap a mem resource. Uses managed device, so - * everything is undone on driver detach. Checks arguments, so you can feed - * it the result from e.g. platform_get_resource() directly. Returns the - * remapped pointer or NULL on error. Usage example: - * - *	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - *	base = devm_request_and_ioremap(&pdev->dev, res); - *	if (!base) - *		return -EADDRNOTAVAIL; - */ -void __iomem *devm_request_and_ioremap(struct device *dev, -				       struct resource *res) -{ -	void __iomem *dest_ptr; - -	dest_ptr = devm_ioremap_resource(dev, res); -	if (IS_ERR(dest_ptr)) -		return NULL; - -	return dest_ptr; -} -EXPORT_SYMBOL(devm_request_and_ioremap); -  #ifdef CONFIG_HAS_IOPORT_MAP  /*   * Generic iomap devres | 
