From 5ae3ec72b2540453fe0d9d1145babba83ae93d3b Mon Sep 17 00:00:00 2001 From: Jens Remus Date: Tue, 21 Nov 2017 14:26:19 +0100 Subject: [PATCH] CODINGSTYLE: Add links to the Linux kernel coding style and checkpatch Add link to the Linux kernel coding style on https://www.kernel.org/ and convert link to the checkpatch tool into a proper Markdown link. Signed-off-by: Jens Remus Acked-by: Michael Holzheu Signed-off-by: Michael Holzheu --- CODINGSTYLE.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CODINGSTYLE.md b/CODINGSTYLE.md index e082cacf..41a3cee7 100644 --- a/CODINGSTYLE.md +++ b/CODINGSTYLE.md @@ -4,10 +4,11 @@ Coding guidelines for s390-tools For s390-tools the preferred language is C. We provide libraries, e.g. [`libutil`](libutil) that should be used by all tools if possible. -The coding style is based on the Linux kernel guidelines. Therefore, use -the checkpatch tool for verification before you submit a patch: +The coding style is based on the Linux [kernel guidelines]. Therefore, use +the [checkpatch] tool for verification before you submit a patch. - - https://github.com/torvalds/linux/blob/master/scripts/checkpatch.pl +[kernel guidelines]: https://www.kernel.org/doc/html/latest/process/coding-style.html +[checkpatch]: https://github.com/torvalds/linux/blob/master/scripts/checkpatch.pl Below we describe some additional things that we want you to consider when writing new code for s390-tools.