checkpatch reports BLOCK_COMMENT_STYLE for the file header because the '*' on the description lines is not aligned with the trailing '*/'.
Align the block comment. No functional change. Signed-off-by: gonglinkai <[email protected]> --- tools/testing/selftests/watchdog/watchdog-test.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/testing/selftests/watchdog/watchdog-test.c b/tools/testing/selftests/watchdog/watchdog-test.c index 74a581250829..8b2c9a63439d 100644 --- a/tools/testing/selftests/watchdog/watchdog-test.c +++ b/tools/testing/selftests/watchdog/watchdog-test.c @@ -1,12 +1,12 @@ // SPDX-License-Identifier: GPL-2.0 /* -* Watchdog Driver Test Program -* - Tests all ioctls -* - Tests Magic Close - CONFIG_WATCHDOG_NOWAYOUT -* - Could be tested against softdog driver on systems that -* don't have watchdog hardware. -* -* Reference: Documentation/watchdog/watchdog-api.rst + * Watchdog Driver Test Program + * - Tests all ioctls + * - Tests Magic Close - CONFIG_WATCHDOG_NOWAYOUT + * - Could be tested against softdog driver on systems that + * don't have watchdog hardware. + * + * Reference: Documentation/watchdog/watchdog-api.rst */ #include <errno.h> -- 2.25.1

