1
0
Fork 0

can: rx-offload: can_rx_offload_compare(): fix typo

This patch fixes a typo found by checkpatch.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
5.4-rM2-2.2.x-imx-squashed
Marc Kleine-Budde 2019-10-07 10:00:25 +02:00 committed by Dong Aisheng
parent 852662af2c
commit 8ee65baa0d
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ static int can_rx_offload_compare(struct sk_buff *a, struct sk_buff *b)
cb_a = can_rx_offload_get_cb(a);
cb_b = can_rx_offload_get_cb(b);
/* Substract two u32 and return result as int, to keep
/* Subtract two u32 and return result as int, to keep
* difference steady around the u32 overflow.
*/
return cb_b->timestamp - cb_a->timestamp;