diff options
author | Mark Brown <broonie@kernel.org> | 2023-07-31 00:38:02 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-07-31 00:38:02 +0200 |
commit | 2cddb06cb020f02a69e4e065599c1e5aa8b4a5d1 (patch) | |
tree | 411945066af7d953de11184b79b6acf0162964a6 /lib | |
parent | ASoC: fsl_micfil: refactor deprecated strncpy (diff) | |
parent | Linux 6.5-rc4 (diff) | |
download | linux-2cddb06cb020f02a69e4e065599c1e5aa8b4a5d1.tar.xz linux-2cddb06cb020f02a69e4e065599c1e5aa8b4a5d1.zip |
ASoC: Merge up fixes from Linus' tree
Gets us pine64plus back if nothing else.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/genalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/genalloc.c b/lib/genalloc.c index 0c883d6fbd44..6c644f954bc5 100644 --- a/lib/genalloc.c +++ b/lib/genalloc.c @@ -895,7 +895,7 @@ struct gen_pool *of_gen_pool_get(struct device_node *np, of_property_read_string(np_pool, "label", &name); if (!name) - name = np_pool->name; + name = of_node_full_name(np_pool); } if (pdev) pool = gen_pool_get(&pdev->dev, name); |