]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
can: ti_hecc: fix -Woverflow compiler warning
authorVincent Mailhol <mailhol.vincent@wanadoo.fr>
Tue, 15 Jul 2025 11:28:11 +0000 (20:28 +0900)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Tue, 15 Jul 2025 11:32:02 +0000 (13:32 +0200)
Fix below default (W=0) warning:

  drivers/net/can/ti_hecc.c: In function 'ti_hecc_start':
  drivers/net/can/ti_hecc.c:386:20: warning: conversion from 'long unsigned int' to 'u32' {aka 'unsigned int'} changes value from '18446744073709551599' to '4294967279' [-Woverflow]
    386 |         mbx_mask = ~BIT(HECC_RX_LAST_MBOX);
        |                    ^

Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Link: https://patch.msgid.link/20250715-can-compile-test-v2-1-f7fd566db86f@wanadoo.fr
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/ti_hecc.c

index 644e8b8eb91e74eec050841491f20d3e6796e9b7..e6d6661a908ab12eb4c7ec61c162848c18ef20f4 100644 (file)
@@ -383,7 +383,7 @@ static void ti_hecc_start(struct net_device *ndev)
         * overflows instead of the hardware silently dropping the
         * messages.
         */
-       mbx_mask = ~BIT(HECC_RX_LAST_MBOX);
+       mbx_mask = ~BIT_U32(HECC_RX_LAST_MBOX);
        hecc_write(priv, HECC_CANOPC, mbx_mask);
 
        /* Enable interrupts */