From: Marc Kleine-Budde Date: Mon, 7 Oct 2019 08:00:25 +0000 (+0200) Subject: can: rx-offload: can_rx_offload_compare(): fix typo X-Git-Tag: v5.10.7~3838^2~127^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7b70e2d62d86fcb3f665d325dbc6f0303ee3c51;p=platform%2Fkernel%2Flinux-rpi.git can: rx-offload: can_rx_offload_compare(): fix typo This patch fixes a typo found by checkpatch. Signed-off-by: Marc Kleine-Budde --- diff --git a/drivers/net/can/rx-offload.c b/drivers/net/can/rx-offload.c index 62393b0..c277c515 100644 --- a/drivers/net/can/rx-offload.c +++ b/drivers/net/can/rx-offload.c @@ -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;