devtools: suppress checkpatch warning about strlcpy
authorStephen Hemminger <stephen@networkplumber.org>
Mon, 15 Nov 2021 23:26:10 +0000 (15:26 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 26 Nov 2021 10:17:28 +0000 (11:17 +0100)
commit1eaa8f01607f870eded67a74dd44f7f173a7fd11
treef8c67d9aaa4cbf4618445cefff92ccff3cf9f521
parent807274d53ad341ca9d8bcdcf582f60273fa78f76
devtools: suppress checkpatch warning about strlcpy

Current version of Linux kernel checkpatch now complains about
usages of strlcpy because the Linux kernel prefers strscpy.

WARNING:STRLCPY: Prefer strscpy over strlcpy

But DPDK project allows strlcpy, therefore suppress the warning.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
devtools/checkpatches.sh