Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge patch series "can: fix coding style"

Marc Kleine-Budde <mkl@pengutronix.de> says:

here are 2 coding style fixes for rx-offload and the ti_hecc driver.

Link: https://lore.kernel.org/all/20230620131130.240180-1-mkl@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

+2 -2
+1 -1
drivers/net/can/dev/rx-offload.c
··· 220 220 EXPORT_SYMBOL_GPL(can_rx_offload_irq_offload_fifo); 221 221 222 222 int can_rx_offload_queue_timestamp(struct can_rx_offload *offload, 223 - struct sk_buff *skb, u32 timestamp) 223 + struct sk_buff *skb, u32 timestamp) 224 224 { 225 225 struct can_rx_offload_cb *cb; 226 226
+1 -1
drivers/net/can/ti_hecc.c
··· 625 625 626 626 timestamp = hecc_read(priv, HECC_CANLNT); 627 627 err = can_rx_offload_queue_timestamp(&priv->offload, skb, 628 - timestamp); 628 + timestamp); 629 629 if (err) 630 630 ndev->stats.rx_fifo_errors++; 631 631 }