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>
28 lines
608 B
Plaintext
28 lines
608 B
Plaintext
# CAN loopback device configuration options
|
|
|
|
# Copyright (c) 2019 Alexander Wachter
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config CAN_LOOPBACK
|
|
bool "Loopback CAN driver"
|
|
help
|
|
This is a dummy driver that can only loopback messages.
|
|
|
|
if CAN_LOOPBACK
|
|
|
|
config CAN_LOOPBACK_DEV_NAME
|
|
string "CAN loopback device name"
|
|
default "CAN_LOOPBACK"
|
|
help
|
|
"Device name for the loopback device"
|
|
|
|
config CAN_MAX_FILTER
|
|
int "Maximum number of concurrent active filters"
|
|
default 5
|
|
range 1 1024
|
|
help
|
|
Defines the array size of the filters.
|
|
Must be at least the size of concurrent reads.
|
|
|
|
endif # CAN_LOOPBACK
|