Skip to content

Commit

Permalink
can: vcan: remove unnecessary blank lines
Browse files Browse the repository at this point in the history
This patch removes unnecessary blank lines, so that checkpatch doesn't
complain anymore.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  • Loading branch information
Marc Kleine-Budde committed Aug 13, 2019
1 parent d569de8 commit 4248f5e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions drivers/net/can/vcan.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ static bool echo; /* echo testing. Default: 0 (Off) */
module_param(echo, bool, 0444);
MODULE_PARM_DESC(echo, "Echo sent frames (for testing). Default: 0 (Off)");


static void vcan_rx(struct sk_buff *skb, struct net_device *dev)
{
struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
Expand Down Expand Up @@ -112,7 +111,6 @@ static netdev_tx_t vcan_tx(struct sk_buff *skb, struct net_device *dev)
/* perform standard echo handling for CAN network interfaces */

if (loop) {

skb = can_create_echo_skb(skb);
if (!skb)
return NETDEV_TX_OK;
Expand Down

0 comments on commit 4248f5e

Please sign in to comment.