提交 0030edf2 编写于 作者: V Vladimir Zapolskiy 提交者: Linus Torvalds

genalloc: rename dev_get_gen_pool() to gen_pool_get()

To be consistent with other genalloc interface namings, rename
dev_get_gen_pool() to gen_pool_get().  The original omitted "dev_" prefix
is removed, since it points to argument type of the function, and so it
does not bring any useful information.

[akpm@linux-foundation.org: update arch/arm/mach-socfpga/pm.c]
Signed-off-by: NVladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
Acked-by: NNicolas Ferre <nicolas.ferre@atmel.com>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Sascha Hauer <kernel@pengutronix.de>
Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: Vinod Koul <vinod.koul@intel.com>
Cc: Takashi Iwai <tiwai@suse.de>
Cc: Jaroslav Kysela <perex@perex.cz>
Cc: Mark Brown <broonie@kernel.org>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Alan Tull <atull@opensource.altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Kevin Hilman <khilman@linaro.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 c1bd55f9
...@@ -369,7 +369,7 @@ static void __init at91_pm_sram_init(void) ...@@ -369,7 +369,7 @@ static void __init at91_pm_sram_init(void)
return; return;
} }
sram_pool = dev_get_gen_pool(&pdev->dev); sram_pool = gen_pool_get(&pdev->dev);
if (!sram_pool) { if (!sram_pool) {
pr_warn("%s: sram pool unavailable!\n", __func__); pr_warn("%s: sram pool unavailable!\n", __func__);
return; return;
......
...@@ -297,7 +297,7 @@ static int __init imx_suspend_alloc_ocram( ...@@ -297,7 +297,7 @@ static int __init imx_suspend_alloc_ocram(
goto put_node; goto put_node;
} }
ocram_pool = dev_get_gen_pool(&pdev->dev); ocram_pool = gen_pool_get(&pdev->dev);
if (!ocram_pool) { if (!ocram_pool) {
pr_warn("%s: ocram pool unavailable!\n", __func__); pr_warn("%s: ocram pool unavailable!\n", __func__);
ret = -ENODEV; ret = -ENODEV;
......
...@@ -451,7 +451,7 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata) ...@@ -451,7 +451,7 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
goto put_node; goto put_node;
} }
ocram_pool = dev_get_gen_pool(&pdev->dev); ocram_pool = gen_pool_get(&pdev->dev);
if (!ocram_pool) { if (!ocram_pool) {
pr_warn("%s: ocram pool unavailable!\n", __func__); pr_warn("%s: ocram pool unavailable!\n", __func__);
ret = -ENODEV; ret = -ENODEV;
......
...@@ -56,7 +56,7 @@ static int socfpga_setup_ocram_self_refresh(void) ...@@ -56,7 +56,7 @@ static int socfpga_setup_ocram_self_refresh(void)
goto put_node; goto put_node;
} }
ocram_pool = dev_get_gen_pool(&pdev->dev); ocram_pool = gen_pool_get(&pdev->dev);
if (!ocram_pool) { if (!ocram_pool) {
pr_warn("%s: ocram pool unavailable!\n", __func__); pr_warn("%s: ocram pool unavailable!\n", __func__);
ret = -ENODEV; ret = -ENODEV;
......
...@@ -2157,7 +2157,7 @@ static int coda_probe(struct platform_device *pdev) ...@@ -2157,7 +2157,7 @@ static int coda_probe(struct platform_device *pdev)
/* Get IRAM pool from device tree or platform data */ /* Get IRAM pool from device tree or platform data */
pool = of_get_named_gen_pool(np, "iram", 0); pool = of_get_named_gen_pool(np, "iram", 0);
if (!pool && pdata) if (!pool && pdata)
pool = dev_get_gen_pool(pdata->iram_dev); pool = gen_pool_get(pdata->iram_dev);
if (!pool) { if (!pool) {
dev_err(&pdev->dev, "iram pool not available\n"); dev_err(&pdev->dev, "iram pool not available\n");
return -ENOMEM; return -ENOMEM;
......
...@@ -119,7 +119,7 @@ extern unsigned long gen_pool_best_fit(unsigned long *map, unsigned long size, ...@@ -119,7 +119,7 @@ extern unsigned long gen_pool_best_fit(unsigned long *map, unsigned long size,
extern struct gen_pool *devm_gen_pool_create(struct device *dev, extern struct gen_pool *devm_gen_pool_create(struct device *dev,
int min_alloc_order, int nid); int min_alloc_order, int nid);
extern struct gen_pool *dev_get_gen_pool(struct device *dev); extern struct gen_pool *gen_pool_get(struct device *dev);
bool addr_in_gen_pool(struct gen_pool *pool, unsigned long start, bool addr_in_gen_pool(struct gen_pool *pool, unsigned long start,
size_t size); size_t size);
......
...@@ -602,12 +602,12 @@ struct gen_pool *devm_gen_pool_create(struct device *dev, int min_alloc_order, ...@@ -602,12 +602,12 @@ struct gen_pool *devm_gen_pool_create(struct device *dev, int min_alloc_order,
EXPORT_SYMBOL(devm_gen_pool_create); EXPORT_SYMBOL(devm_gen_pool_create);
/** /**
* dev_get_gen_pool - Obtain the gen_pool (if any) for a device * gen_pool_get - Obtain the gen_pool (if any) for a device
* @dev: device to retrieve the gen_pool from * @dev: device to retrieve the gen_pool from
* *
* Returns the gen_pool for the device if one is present, or NULL. * Returns the gen_pool for the device if one is present, or NULL.
*/ */
struct gen_pool *dev_get_gen_pool(struct device *dev) struct gen_pool *gen_pool_get(struct device *dev)
{ {
struct gen_pool **p = devres_find(dev, devm_gen_pool_release, NULL, struct gen_pool **p = devres_find(dev, devm_gen_pool_release, NULL,
NULL); NULL);
...@@ -616,7 +616,7 @@ struct gen_pool *dev_get_gen_pool(struct device *dev) ...@@ -616,7 +616,7 @@ struct gen_pool *dev_get_gen_pool(struct device *dev)
return NULL; return NULL;
return *p; return *p;
} }
EXPORT_SYMBOL_GPL(dev_get_gen_pool); EXPORT_SYMBOL_GPL(gen_pool_get);
#ifdef CONFIG_OF #ifdef CONFIG_OF
/** /**
...@@ -642,7 +642,7 @@ struct gen_pool *of_get_named_gen_pool(struct device_node *np, ...@@ -642,7 +642,7 @@ struct gen_pool *of_get_named_gen_pool(struct device_node *np,
of_node_put(np_pool); of_node_put(np_pool);
if (!pdev) if (!pdev)
return NULL; return NULL;
return dev_get_gen_pool(&pdev->dev); return gen_pool_get(&pdev->dev);
} }
EXPORT_SYMBOL_GPL(of_get_named_gen_pool); EXPORT_SYMBOL_GPL(of_get_named_gen_pool);
#endif /* CONFIG_OF */ #endif /* CONFIG_OF */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册