diff options
author | Tom Rini <trini@konsulko.com> | 2022-01-15 07:34:46 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-15 07:34:46 -0500 |
commit | 0962da92a1dfb210eef8c936e33862812fa1b208 (patch) | |
tree | c72fd2621d37fcff8b834f104ef83200d47fbebf /scripts/checkpatch.pl | |
parent | 9b72d934c2f7d8ee894f87e082577743877eb76e (diff) | |
parent | 97f2a749d5126b2908dd282969c02c3632417c68 (diff) |
Merge branch '2022-01-14-assorted-fixes'
- A number of fixes in various subsystems. This includes having the phy
uclass track power-on and init counts as this should resolve some
tricky functional problems on a number of platforms.
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 5696d3a5f3b..cf59e2bb705 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2617,7 +2617,7 @@ sub u_boot_line { } # Do not disable fdt / initrd relocation - if ($rawline =~ /.*(fdt|initrd)_high=0xffffffff/) { + if ($rawline =~ /^\+.*(fdt|initrd)_high=0xffffffff/) { ERROR("DISABLE_FDT_OR_INITRD_RELOC", "fdt or initrd relocation disabled at boot time\n" . $herecurr); } |