Added in commit 0e807c3f54 ("drivers: can: Add loopback driver"), then
never used.
Found with a script.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
31 lines
633 B
Plaintext
31 lines
633 B
Plaintext
# Kconfig.loopback - 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
|