Commit a604686c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

staging: atomisp: remove "fun" strncpy warning

[for older kernels only, atomisp has been removed from upstream]

gcc-8 rightfully warns that this instance of strncpy is just copying
from the source, to the same source, for a few bytes.  Meaning this call
does nothing.  As the author of the code obviously meant it to do
something, but this code must be working properly, just replace the call
to the kernel internal strscpy() which gcc doesn't know about, so the
warning goes away.

As this driver was deleted from newer kernel versions, none of this
really matters but now at least we do not have to worry about a build
warning in the stable trees.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b4e4b857
...@@ -2860,9 +2860,7 @@ ia_css_debug_pipe_graph_dump_stage( ...@@ -2860,9 +2860,7 @@ ia_css_debug_pipe_graph_dump_stage(
if (l <= ENABLE_LINE_MAX_LENGTH) { if (l <= ENABLE_LINE_MAX_LENGTH) {
/* It fits on one line, copy string and init */ /* It fits on one line, copy string and init */
/* other helper strings with empty string */ /* other helper strings with empty string */
strcpy_s(enable_info, strscpy(enable_info, ei, sizeof(enable_info));
sizeof(enable_info),
ei);
} else { } else {
/* Too big for one line, find last comma */ /* Too big for one line, find last comma */
p = ENABLE_LINE_MAX_LENGTH; p = ENABLE_LINE_MAX_LENGTH;
......
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