From: Dario Binacchi Date: Fri, 22 Nov 2024 22:15:44 +0000 (+0100) Subject: can: sun4i_can: continue to use likely() to check skb X-Git-Tag: block-6.14-20240131~28^2~94^2~8 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=bddad4fac9f73c14f57b111058dd0fa6d9ede228;p=linux-block.git can: sun4i_can: continue to use likely() to check skb Throughout the sun4i_can_err() function, the likely() macro is used to check the skb buffer, except in one instance. This patch makes the code consistent by using the macro in that case as well. Signed-off-by: Dario Binacchi Link: https://patch.msgid.link/20241122221650.633981-4-dario.binacchi@amarulasolutions.com Signed-off-by: Marc Kleine-Budde --- diff --git a/drivers/net/can/sun4i_can.c b/drivers/net/can/sun4i_can.c index 360158c295d3..48d31197adec 100644 --- a/drivers/net/can/sun4i_can.c +++ b/drivers/net/can/sun4i_can.c @@ -570,7 +570,7 @@ static int sun4i_can_err(struct net_device *dev, u8 isrc, u8 status) else state = CAN_STATE_ERROR_ACTIVE; } - if (skb && state != CAN_STATE_BUS_OFF) { + if (likely(skb) && state != CAN_STATE_BUS_OFF) { cf->can_id |= CAN_ERR_CNT; cf->data[6] = txerr; cf->data[7] = rxerr;