projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
326b42d
)
interconnect: Remove a useless kfree_const() usage
author
Christophe JAILLET
<christophe.jaillet@wanadoo.fr>
Thu, 26 Sep 2024 18:33:49 +0000
(20:33 +0200)
committer
Georgi Djakov
<djakov@kernel.org>
Tue, 22 Oct 2024 08:17:24 +0000
(11:17 +0300)
"path->name" is allocated in of_icc_get_by_index() using kasprintf(), so
there is no point in using kfree_const() to free it.
Switch to the more standard kfree() to free this.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link:
https://lore.kernel.org/r/06630f9ec3e153d0e7773b8d97a17e7c53e0d606.1727375615.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Georgi Djakov <djakov@kernel.org>
drivers/interconnect/core.c
patch
|
blob
|
history
diff --git
a/drivers/interconnect/core.c
b/drivers/interconnect/core.c
index
7e9b996
..
8a99328
100644
(file)
--- a/
drivers/interconnect/core.c
+++ b/
drivers/interconnect/core.c
@@
-808,7
+808,7
@@
void icc_put(struct icc_path *path)
mutex_unlock(&icc_bw_lock);
mutex_unlock(&icc_lock);
- kfree
_const
(path->name);
+ kfree(path->name);
kfree(path);
}
EXPORT_SYMBOL_GPL(icc_put);