Skip to content

Commit

Permalink
can: slcan: fix whitespace issues
Browse files Browse the repository at this point in the history
Add and remove whitespace to make checkpatch happy.

Link: https://lore.kernel.org/all/20220704125954.1587880-4-mkl@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  • Loading branch information
Marc Kleine-Budde committed Jul 19, 2022
1 parent ded5fa8 commit f07d9e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/can/slcan/slcan-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module_param(maxdev, int, 0);
MODULE_PARM_DESC(maxdev, "Maximum number of slcan interfaces");

/* maximum rx buffer len: extended CAN frame with timestamp */
#define SLC_MTU (sizeof("T1111222281122334455667788EA5F\r")+1)
#define SLC_MTU (sizeof("T1111222281122334455667788EA5F\r") + 1)

#define SLC_CMD_LEN 1
#define SLC_SFF_ID_LEN 3
Expand Down Expand Up @@ -624,7 +624,7 @@ static netdev_tx_t slc_xmit(struct sk_buff *skb, struct net_device *dev)
}

netif_stop_queue(sl->dev);
slc_encaps(sl, (struct can_frame *) skb->data); /* encaps & send */
slc_encaps(sl, (struct can_frame *)skb->data); /* encaps & send */
spin_unlock(&sl->lock);

out:
Expand Down Expand Up @@ -804,7 +804,7 @@ static void slcan_receive_buf(struct tty_struct *tty,
const unsigned char *cp, const char *fp,
int count)
{
struct slcan *sl = (struct slcan *) tty->disc_data;
struct slcan *sl = (struct slcan *)tty->disc_data;

if (!sl || sl->magic != SLCAN_MAGIC || !netif_running(sl->dev))
return;
Expand Down Expand Up @@ -976,7 +976,7 @@ static int slcan_open(struct tty_struct *tty)
*/
static void slcan_close(struct tty_struct *tty)
{
struct slcan *sl = (struct slcan *) tty->disc_data;
struct slcan *sl = (struct slcan *)tty->disc_data;

/* First make sure we're connected. */
if (!sl || sl->magic != SLCAN_MAGIC || sl->tty != tty)
Expand Down Expand Up @@ -1006,7 +1006,7 @@ static void slcan_hangup(struct tty_struct *tty)
static int slcan_ioctl(struct tty_struct *tty, unsigned int cmd,
unsigned long arg)
{
struct slcan *sl = (struct slcan *) tty->disc_data;
struct slcan *sl = (struct slcan *)tty->disc_data;
unsigned int tmp;

/* First make sure we're connected. */
Expand Down

0 comments on commit f07d9e3

Please sign in to comment.