diff options
author | Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com> | 2015-06-30 18:00:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-30 22:45:01 -0400 |
commit | abdd4a7025282fbe3737e1bcb5f51afc8d8ea1b8 (patch) | |
tree | 91bcec7188ffaf680f43998ba4ac029711cee158 | |
parent | 0030edf296db8a7afb13573eb12977b7d399cd40 (diff) |
genalloc: rename of_get_named_gen_pool() to of_gen_pool_get()
To be consistent with other kernel interface namings, rename
of_get_named_gen_pool() to of_gen_pool_get(). In the original function
name "_named" suffix references to a device tree property, which contains
a phandle to a device and the corresponding device driver is assumed to
register a gen_pool object.
Due to a weak relation and to avoid any confusion (e.g. in future
possible scenario if gen_pool objects are named) the suffix is removed.
[sfr@canb.auug.org.au: crypto/marvell/cesa - fix up for of_get_named_gen_pool() rename]
Signed-off-by: Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>
Cc: Nicolas 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>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Boris BREZILLON <boris.brezillon@free-electrons.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/crypto/marvell/cesa.c | 5 | ||||
-rw-r--r-- | drivers/dma/mmp_tdma.c | 2 | ||||
-rw-r--r-- | drivers/media/platform/coda/coda-common.c | 2 | ||||
-rw-r--r-- | include/linux/genalloc.h | 4 | ||||
-rw-r--r-- | lib/genalloc.c | 6 | ||||
-rw-r--r-- | sound/core/memalloc.c | 2 |
6 files changed, 10 insertions, 11 deletions
diff --git a/drivers/crypto/marvell/cesa.c b/drivers/crypto/marvell/cesa.c index a432633bced4..1c6f98dd88f4 100644 --- a/drivers/crypto/marvell/cesa.c +++ b/drivers/crypto/marvell/cesa.c | |||
@@ -321,9 +321,8 @@ static int mv_cesa_get_sram(struct platform_device *pdev, int idx) | |||
321 | const char *res_name = "sram"; | 321 | const char *res_name = "sram"; |
322 | struct resource *res; | 322 | struct resource *res; |
323 | 323 | ||
324 | engine->pool = of_get_named_gen_pool(cesa->dev->of_node, | 324 | engine->pool = of_gen_pool_get(cesa->dev->of_node, |
325 | "marvell,crypto-srams", | 325 | "marvell,crypto-srams", idx); |
326 | idx); | ||
327 | if (engine->pool) { | 326 | if (engine->pool) { |
328 | engine->sram = gen_pool_dma_alloc(engine->pool, | 327 | engine->sram = gen_pool_dma_alloc(engine->pool, |
329 | cesa->sram_size, | 328 | cesa->sram_size, |
diff --git a/drivers/dma/mmp_tdma.c b/drivers/dma/mmp_tdma.c index 449e785def17..e683761e0f8f 100644 --- a/drivers/dma/mmp_tdma.c +++ b/drivers/dma/mmp_tdma.c | |||
@@ -657,7 +657,7 @@ static int mmp_tdma_probe(struct platform_device *pdev) | |||
657 | INIT_LIST_HEAD(&tdev->device.channels); | 657 | INIT_LIST_HEAD(&tdev->device.channels); |
658 | 658 | ||
659 | if (pdev->dev.of_node) | 659 | if (pdev->dev.of_node) |
660 | pool = of_get_named_gen_pool(pdev->dev.of_node, "asram", 0); | 660 | pool = of_gen_pool_get(pdev->dev.of_node, "asram", 0); |
661 | else | 661 | else |
662 | pool = sram_get_gpool("asram"); | 662 | pool = sram_get_gpool("asram"); |
663 | if (!pool) { | 663 | if (!pool) { |
diff --git a/drivers/media/platform/coda/coda-common.c b/drivers/media/platform/coda/coda-common.c index 6e640c0f0b35..58f65486de33 100644 --- a/drivers/media/platform/coda/coda-common.c +++ b/drivers/media/platform/coda/coda-common.c | |||
@@ -2155,7 +2155,7 @@ static int coda_probe(struct platform_device *pdev) | |||
2155 | } | 2155 | } |
2156 | 2156 | ||
2157 | /* Get IRAM pool from device tree or platform data */ | 2157 | /* Get IRAM pool from device tree or platform data */ |
2158 | pool = of_get_named_gen_pool(np, "iram", 0); | 2158 | pool = of_gen_pool_get(np, "iram", 0); |
2159 | if (!pool && pdata) | 2159 | if (!pool && pdata) |
2160 | pool = gen_pool_get(pdata->iram_dev); | 2160 | pool = gen_pool_get(pdata->iram_dev); |
2161 | if (!pool) { | 2161 | if (!pool) { |
diff --git a/include/linux/genalloc.h b/include/linux/genalloc.h index 015d17068615..5383bb1394a1 100644 --- a/include/linux/genalloc.h +++ b/include/linux/genalloc.h | |||
@@ -125,10 +125,10 @@ bool addr_in_gen_pool(struct gen_pool *pool, unsigned long start, | |||
125 | size_t size); | 125 | size_t size); |
126 | 126 | ||
127 | #ifdef CONFIG_OF | 127 | #ifdef CONFIG_OF |
128 | extern struct gen_pool *of_get_named_gen_pool(struct device_node *np, | 128 | extern struct gen_pool *of_gen_pool_get(struct device_node *np, |
129 | const char *propname, int index); | 129 | const char *propname, int index); |
130 | #else | 130 | #else |
131 | static inline struct gen_pool *of_get_named_gen_pool(struct device_node *np, | 131 | static inline struct gen_pool *of_gen_pool_get(struct device_node *np, |
132 | const char *propname, int index) | 132 | const char *propname, int index) |
133 | { | 133 | { |
134 | return NULL; | 134 | return NULL; |
diff --git a/lib/genalloc.c b/lib/genalloc.c index 948e92cd9794..daf0afb6d979 100644 --- a/lib/genalloc.c +++ b/lib/genalloc.c | |||
@@ -620,7 +620,7 @@ EXPORT_SYMBOL_GPL(gen_pool_get); | |||
620 | 620 | ||
621 | #ifdef CONFIG_OF | 621 | #ifdef CONFIG_OF |
622 | /** | 622 | /** |
623 | * of_get_named_gen_pool - find a pool by phandle property | 623 | * of_gen_pool_get - find a pool by phandle property |
624 | * @np: device node | 624 | * @np: device node |
625 | * @propname: property name containing phandle(s) | 625 | * @propname: property name containing phandle(s) |
626 | * @index: index into the phandle array | 626 | * @index: index into the phandle array |
@@ -629,7 +629,7 @@ EXPORT_SYMBOL_GPL(gen_pool_get); | |||
629 | * address of the device tree node pointed at by the phandle property, | 629 | * address of the device tree node pointed at by the phandle property, |
630 | * or NULL if not found. | 630 | * or NULL if not found. |
631 | */ | 631 | */ |
632 | struct gen_pool *of_get_named_gen_pool(struct device_node *np, | 632 | struct gen_pool *of_gen_pool_get(struct device_node *np, |
633 | const char *propname, int index) | 633 | const char *propname, int index) |
634 | { | 634 | { |
635 | struct platform_device *pdev; | 635 | struct platform_device *pdev; |
@@ -644,5 +644,5 @@ struct gen_pool *of_get_named_gen_pool(struct device_node *np, | |||
644 | return NULL; | 644 | return NULL; |
645 | return gen_pool_get(&pdev->dev); | 645 | return gen_pool_get(&pdev->dev); |
646 | } | 646 | } |
647 | EXPORT_SYMBOL_GPL(of_get_named_gen_pool); | 647 | EXPORT_SYMBOL_GPL(of_gen_pool_get); |
648 | #endif /* CONFIG_OF */ | 648 | #endif /* CONFIG_OF */ |
diff --git a/sound/core/memalloc.c b/sound/core/memalloc.c index 082509eb805d..f05cb6a8cbe0 100644 --- a/sound/core/memalloc.c +++ b/sound/core/memalloc.c | |||
@@ -124,7 +124,7 @@ static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size) | |||
124 | dmab->addr = 0; | 124 | dmab->addr = 0; |
125 | 125 | ||
126 | if (dev->of_node) | 126 | if (dev->of_node) |
127 | pool = of_get_named_gen_pool(dev->of_node, "iram", 0); | 127 | pool = of_gen_pool_get(dev->of_node, "iram", 0); |
128 | 128 | ||
129 | if (!pool) | 129 | if (!pool) |
130 | return; | 130 | return; |