mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-10 15:54:39 +08:00
f4f77366f2
In [1] Geert noted that the autodetect compatible for the mcp25xxfd driver, which is "microchip,mcp25xxfd" might be too generic and overlap with upcoming, but incompatible chips. In the previous patch the autodetect DT compatbile has been renamed to "microchip,mcp251xfd", this patch changes all user facing strings from "mcp25xxfd" to "mcp251xfd" and "MCP25XXFD" to "MCP251XFD", including: - kconfig symbols - name of kernel module - DT and SPI compatible [1] http://lore.kernel.org/r/CAMuHMdVkwGjr6dJuMyhQNqFoJqbh6Ec5V2b5LenCshwpM2SDsQ@mail.gmail.com Link: https://lore.kernel.org/r/20200930091424.792165-9-mkl@pengutronix.de Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
18 lines
494 B
Plaintext
18 lines
494 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config CAN_MCP251XFD
|
|
tristate "Microchip MCP251xFD SPI CAN controllers"
|
|
select REGMAP
|
|
help
|
|
Driver for the Microchip MCP251XFD SPI FD-CAN controller
|
|
family.
|
|
|
|
config CAN_MCP251XFD_SANITY
|
|
depends on CAN_MCP251XFD
|
|
bool "Additional Sanity Checks"
|
|
help
|
|
This option enables additional sanity checks in the driver,
|
|
that compares various internal counters with the in chip
|
|
variants. This comes with a runtime overhead.
|
|
Disable if unsure.
|