| commit | bd6e04411e6cfb34ff871b3436f7b05bdcd639fb | [log] [tgz] |
|---|---|---|
| author | Ulf Magnusson <Ulf.Magnusson@nordicsemi.no> | Fri Nov 01 13:45:29 2019 +0100 |
| committer | Anas Nashif <anas.nashif@intel.com> | Mon Nov 04 17:31:27 2019 -0500 |
| tree | 3f30150a30eb493fce9dcf33456be23a445f9992 | |
| parent | 86360cb2f77b70549c7ea06079724a81e50f485c [diff] |
kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files:
# <description>
# <copyright>
# <license>
...
Also change all <description>s from
# Kconfig[.extension] - Foo-related options
to just
# Foo-related options
It's clear enough that it's about Kconfig.
The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)
git ls-files '*Kconfig*' | \
xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>