25/10/2020 08:16, David Marchand: > On Sat, Oct 24, 2020 at 6:18 PM Honnappa Nagarahalli > <honnappa.nagaraha...@arm.com> wrote: > > > > Hi David, > > Checkpatch CI is showing "WARNING" on a lot of the patches in this > > series, but it does not list any real warnings. Any idea what is happening? > > I reported it to Thomas last night. > Thomas has fixed a few things in the script but I don't know if he's > finished with it.
Yes this is an issue in Linux checkpatch that I've updated on the server just before you send this series. Then I've fixed it: --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -977,7 +977,7 @@ sub seed_camelcase_includes { sub git_is_single_file { my ($filename) = @_; - return 0 if ((which("git") eq "") || !(-e "$gitroot")); + return 0 if ((which("git") eq "") || !(-e "$root/.git"));