Re: [PATCH] ftrace: Use true and false for boolean values

2018-08-01 Thread Steven Rostedt
On Wed, 1 Aug 2018 20:00:56 -0500 "Gustavo A. R. Silva" wrote: > Return statements in functions returning bool should use true or false > instead of an integer value. > > This code was detected with the help of Coccinelle. > > Signed-off-by: Gustavo A. R. Silva Thanks, applied. -- Steve

[PATCH] ftrace: Use true and false for boolean values

2018-08-01 Thread Gustavo A. R. Silva
Return statements in functions returning bool should use true or false instead of an integer value. This code was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva --- kernel/trace/ftrace.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ker