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>
44 lines
509 B
Plaintext
44 lines
509 B
Plaintext
# DesignWare ARC EM Software Development Platform board configuration
|
|
|
|
# Copyright (c) 2019 Synopsys, Inc. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_EMSDP
|
|
|
|
config BOARD
|
|
default "emsdp"
|
|
|
|
|
|
if GPIO
|
|
|
|
config GPIO_DW
|
|
default y
|
|
|
|
if GPIO_DW
|
|
|
|
config GPIO_DW_0
|
|
default y
|
|
|
|
config GPIO_DW_1
|
|
default y
|
|
|
|
endif # GPIO_DW
|
|
|
|
endif # GPIO
|
|
|
|
if SERIAL
|
|
|
|
config UART_NS16550
|
|
default y
|
|
|
|
endif # SERIAL
|
|
|
|
if UART_CONSOLE
|
|
|
|
config UART_NS16550_PORT_0
|
|
default y
|
|
|
|
endif # UART_CONSOLE
|
|
|
|
endif # BOARD_EMSDP
|