diff options
author | Oliver Hartkopp <oliver.hartkopp@volkswagen.de> | 2007-11-16 18:56:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:54:12 -0500 |
commit | ccb29637991fa6b8321a80c2320a71e379aea962 (patch) | |
tree | 07a0a58adcb97c9691ec0d2a0feae5b68804ef4a /drivers/net/can/Kconfig | |
parent | ffd980f976e7fd666c2e61bf8ab35107efd11828 (diff) |
[CAN]: Add virtual CAN netdevice driver
This patch adds the virtual CAN bus (vcan) network driver.
The vcan device is just a loopback device for CAN frames, no
real CAN hardware is involved.
Signed-off-by: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Signed-off-by: Urs Thuermann <urs.thuermann@volkswagen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/Kconfig')
-rw-r--r-- | drivers/net/can/Kconfig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/net/can/Kconfig b/drivers/net/can/Kconfig new file mode 100644 index 000000000000..57def0d57371 --- /dev/null +++ b/drivers/net/can/Kconfig | |||
@@ -0,0 +1,25 @@ | |||
1 | menu "CAN Device Drivers" | ||
2 | depends on CAN | ||
3 | |||
4 | config CAN_VCAN | ||
5 | tristate "Virtual Local CAN Interface (vcan)" | ||
6 | depends on CAN | ||
7 | default N | ||
8 | ---help--- | ||
9 | Similar to the network loopback devices, vcan offers a | ||
10 | virtual local CAN interface. | ||
11 | |||
12 | This driver can also be built as a module. If so, the module | ||
13 | will be called vcan. | ||
14 | |||
15 | config CAN_DEBUG_DEVICES | ||
16 | bool "CAN devices debugging messages" | ||
17 | depends on CAN | ||
18 | default N | ||
19 | ---help--- | ||
20 | Say Y here if you want the CAN device drivers to produce a bunch of | ||
21 | debug messages to the system log. Select this if you are having | ||
22 | a problem with CAN support and want to see more of what is going | ||
23 | on. | ||
24 | |||
25 | endmenu | ||