aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can/Kconfig
diff options
context:
space:
mode:
authorOliver Hartkopp <oliver.hartkopp@volkswagen.de>2007-11-16 15:56:08 -0800
committerDavid S. Miller <davem@davemloft.net>2008-01-28 14:54:12 -0800
commitccb29637991fa6b8321a80c2320a71e379aea962 (patch)
tree07a0a58adcb97c9691ec0d2a0feae5b68804ef4a /drivers/net/can/Kconfig
parentffd980f976e7fd666c2e61bf8ab35107efd11828 (diff)
downloadkernel_samsung_smdk4412-ccb29637991fa6b8321a80c2320a71e379aea962.zip
kernel_samsung_smdk4412-ccb29637991fa6b8321a80c2320a71e379aea962.tar.gz
kernel_samsung_smdk4412-ccb29637991fa6b8321a80c2320a71e379aea962.tar.bz2
[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/Kconfig25
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/net/can/Kconfig b/drivers/net/can/Kconfig
new file mode 100644
index 0000000..57def0d
--- /dev/null
+++ b/drivers/net/can/Kconfig
@@ -0,0 +1,25 @@
+menu "CAN Device Drivers"
+ depends on CAN
+
+config CAN_VCAN
+ tristate "Virtual Local CAN Interface (vcan)"
+ depends on CAN
+ default N
+ ---help---
+ Similar to the network loopback devices, vcan offers a
+ virtual local CAN interface.
+
+ This driver can also be built as a module. If so, the module
+ will be called vcan.
+
+config CAN_DEBUG_DEVICES
+ bool "CAN devices debugging messages"
+ depends on CAN
+ default N
+ ---help---
+ Say Y here if you want the CAN device drivers to produce a bunch of
+ debug messages to the system log. Select this if you are having
+ a problem with CAN support and want to see more of what is going
+ on.
+
+endmenu