diff options
author | Tom Rini <trini@konsulko.com> | 2022-07-14 08:07:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-14 14:13:46 -0400 |
commit | a09d85677eb07a9c4fdaf9b0b84d825cf07f7940 (patch) | |
tree | 0ebeb5d785eb911f251cd1ac7829b4e159684cc1 /doc | |
parent | 528581e32b46c8bacccdc763d2797c9ae54b0410 (diff) | |
download | u-boot-a09d85677eb07a9c4fdaf9b0b84d825cf07f7940.zip u-boot-a09d85677eb07a9c4fdaf9b0b84d825cf07f7940.tar.gz u-boot-a09d85677eb07a9c4fdaf9b0b84d825cf07f7940.tar.bz2 |
doc: codingstyle: Remove comment about '//' style comments
For some time now we've allowed for '//' style comments, which mirrors
the Linux kernel. So drop this point here.
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/develop/codingstyle.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/develop/codingstyle.rst b/doc/develop/codingstyle.rst index 1041d1c..2b13818 100644 --- a/doc/develop/codingstyle.rst +++ b/doc/develop/codingstyle.rst @@ -33,12 +33,6 @@ The following rules apply: original coding style may be kept to ease subsequent migration to newer versions of those sources. -* Please note that U-Boot is implemented in C (and to some small parts in - Assembler); no C++ is used, so please do not use C++ style comments (//) in - your code. - - * The sole exception here is for SPDX tags in some files (checkpatch.pl will warn you). - * Please also stick to the following formatting rules: * Remove any trailing white space |