Commit e5f89131 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Greg Kroah-Hartman

rpmsg: Constify local variable in field store macro

Memory pointed by variable 'old' in field store macro is not modified,
so it can be made a pointer to const.
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220419113435.246203-12-krzysztof.kozlowski@linaro.orgSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0f4b20ef
...@@ -400,7 +400,8 @@ field##_store(struct device *dev, struct device_attribute *attr, \ ...@@ -400,7 +400,8 @@ field##_store(struct device *dev, struct device_attribute *attr, \
const char *buf, size_t sz) \ const char *buf, size_t sz) \
{ \ { \
struct rpmsg_device *rpdev = to_rpmsg_device(dev); \ struct rpmsg_device *rpdev = to_rpmsg_device(dev); \
char *new, *old; \ const char *old; \
char *new; \
\ \
new = kstrndup(buf, sz, GFP_KERNEL); \ new = kstrndup(buf, sz, GFP_KERNEL); \
if (!new) \ if (!new) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment