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>
39 lines
600 B
Plaintext
39 lines
600 B
Plaintext
# IMX M4 Core SDK
|
|
|
|
# Copyright (c) 2018, NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config HAS_IMX_HAL
|
|
bool
|
|
select HAS_CMSIS_CORE
|
|
depends on SOC_FAMILY_IMX
|
|
|
|
if HAS_IMX_HAL
|
|
|
|
config HAS_IMX_RDC
|
|
bool
|
|
help
|
|
Set if the RDC module is present in the SoC.
|
|
|
|
config HAS_IMX_CCM
|
|
bool
|
|
help
|
|
Set if the CCM module is present in the SoC.
|
|
|
|
config HAS_IMX_GPIO
|
|
bool
|
|
help
|
|
Set if the GPIO module is present in the SoC.
|
|
|
|
config HAS_IMX_I2C
|
|
bool
|
|
help
|
|
Set if the I2C module is present in the SoC.
|
|
|
|
config HAS_IMX_EPIT
|
|
bool
|
|
help
|
|
Set if the EPIT module is present in the SoC.
|
|
|
|
endif # HAS_IMX_HAL
|