Commit d569de81 authored by Marc Kleine-Budde's avatar Marc Kleine-Budde

can: vcan: convert block comments to network style comments

This patch converts all block comments to network subsystem style block
comments.
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 456a8a64
/* /* vcan.c - Virtual CAN interface
* vcan.c - Virtual CAN interface
* *
* Copyright (c) 2002-2017 Volkswagen Group Electronic Research * Copyright (c) 2002-2017 Volkswagen Group Electronic Research
* All rights reserved. * All rights reserved.
...@@ -57,9 +56,7 @@ MODULE_LICENSE("Dual BSD/GPL"); ...@@ -57,9 +56,7 @@ MODULE_LICENSE("Dual BSD/GPL");
MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>"); MODULE_AUTHOR("Urs Thuermann <urs.thuermann@volkswagen.de>");
MODULE_ALIAS_RTNL_LINK(DRV_NAME); MODULE_ALIAS_RTNL_LINK(DRV_NAME);
/* CAN test feature:
/*
* CAN test feature:
* Enable the echo on driver level for testing the CAN core echo modes. * Enable the echo on driver level for testing the CAN core echo modes.
* See Documentation/networking/can.rst for details. * See Documentation/networking/can.rst for details.
*/ */
...@@ -101,10 +98,8 @@ static netdev_tx_t vcan_tx(struct sk_buff *skb, struct net_device *dev) ...@@ -101,10 +98,8 @@ static netdev_tx_t vcan_tx(struct sk_buff *skb, struct net_device *dev)
if (!echo) { if (!echo) {
/* no echo handling available inside this driver */ /* no echo handling available inside this driver */
if (loop) { if (loop) {
/* /* only count the packets here, because the
* only count the packets here, because the
* CAN core already did the echo for us * CAN core already did the echo for us
*/ */
stats->rx_packets++; stats->rx_packets++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment