]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
seq_buf: Avoid type mismatch for seq_buf_init
authorArnd Bergmann <arnd@arndb.de>
Mon, 26 Oct 2020 16:10:58 +0000 (17:10 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Dec 2020 12:42:39 +0000 (13:42 +0100)
commit1e3a40233d04879b54093e107f9af4195c4cfec3
tree915bc6982fbb3a1149f77f5226953822e9e7322d
parent15b5e2f535dd4982057006ffa3a8762b1fd68fad
seq_buf: Avoid type mismatch for seq_buf_init

[ Upstream commit d9a9280a0d0ae51dc1d4142138b99242b7ec8ac6 ]

Building with W=2 prints a number of warnings for one function that
has a pointer type mismatch:

linux/seq_buf.h: In function 'seq_buf_init':
linux/seq_buf.h:35:12: warning: pointer targets in assignment from 'unsigned char *' to 'char *' differ in signedness [-Wpointer-sign]

Change the type in the function prototype according to the type in
the structure.

Link: https://lkml.kernel.org/r/20201026161108.3707783-1-arnd@kernel.org
Fixes: 9a7777935c34 ("tracing: Convert seq_buf fields to be like seq_file fields")
Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/linux/seq_buf.h
include/linux/trace_seq.h