Message ID | 20231106125352.859992-7-nrb@linux.ibm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | RFC: Add clang-format and kerneldoc check | expand |
On 06/11/2023 13.51, Nico Boehr wrote: > These comments do not follow the kernel-doc style, hence they should not > start with /**. > > Signed-off-by: Nico Boehr <nrb@linux.ibm.com> > --- > x86/msr.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/x86/msr.c b/x86/msr.c > index 789f23f8de78..3a041fab160a 100644 > --- a/x86/msr.c > +++ b/x86/msr.c > @@ -6,7 +6,7 @@ > #include "msr.h" > #include <stdlib.h> > > -/** > +/* > * This test allows two modes: > * 1. Default: the `msr_info' array contains the default test configurations > * 2. Custom: by providing command line arguments it is possible to test any MSR and value Reviewed-by: Thomas Huth <thuth@redhat.com>
diff --git a/x86/msr.c b/x86/msr.c index 789f23f8de78..3a041fab160a 100644 --- a/x86/msr.c +++ b/x86/msr.c @@ -6,7 +6,7 @@ #include "msr.h" #include <stdlib.h> -/** +/* * This test allows two modes: * 1. Default: the `msr_info' array contains the default test configurations * 2. Custom: by providing command line arguments it is possible to test any MSR and value
These comments do not follow the kernel-doc style, hence they should not start with /**. Signed-off-by: Nico Boehr <nrb@linux.ibm.com> --- x86/msr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)