From: Greg Kroah-Hartman Date: Fri, 22 Aug 2025 08:23:45 +0000 (+0200) Subject: drop can patch from everywhere X-Git-Tag: v6.16.3~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=621bb791fe1d9f0d3fc144104c30fdc60fc703d6;p=thirdparty%2Fkernel%2Fstable-queue.git drop can patch from everywhere --- diff --git a/queue-5.10/can-ti_hecc-fix-woverflow-compiler-warning.patch b/queue-5.10/can-ti_hecc-fix-woverflow-compiler-warning.patch deleted file mode 100644 index 3d31f69e75..0000000000 --- a/queue-5.10/can-ti_hecc-fix-woverflow-compiler-warning.patch +++ /dev/null @@ -1,40 +0,0 @@ -From bdbf3e2b3c973d57ce423b6343388044f9670e0e Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 15 Jul 2025 20:28:11 +0900 -Subject: can: ti_hecc: fix -Woverflow compiler warning - -From: Vincent Mailhol - -[ Upstream commit 7cae4d04717b002cffe41169da3f239c845a0723 ] - -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 -Link: https://patch.msgid.link/20250715-can-compile-test-v2-1-f7fd566db86f@wanadoo.fr -Signed-off-by: Marc Kleine-Budde -Signed-off-by: Sasha Levin ---- - drivers/net/can/ti_hecc.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c -index 2c22f40e12bd..7662c4b9e318 100644 ---- a/drivers/net/can/ti_hecc.c -+++ b/drivers/net/can/ti_hecc.c -@@ -393,7 +393,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 */ --- -2.39.5 - diff --git a/queue-5.10/series b/queue-5.10/series index c9c793ff0f..ca7fb2d80f 100644 --- a/queue-5.10/series +++ b/queue-5.10/series @@ -264,7 +264,6 @@ be2net-use-correct-byte-order-and-format-string-for-.patch et131x-add-missing-check-after-dma-map.patch net-ag71xx-add-missing-check-after-dma-map.patch rcu-protect-defer_qs_iw_pending-from-data-race.patch -can-ti_hecc-fix-woverflow-compiler-warning.patch wifi-cfg80211-fix-interface-type-validation.patch net-ipv4-fix-incorrect-mtu-in-broadcast-routes.patch net-thunderx-fix-format-truncation-warning-in-bgx_ac.patch diff --git a/queue-5.15/can-ti_hecc-fix-woverflow-compiler-warning.patch b/queue-5.15/can-ti_hecc-fix-woverflow-compiler-warning.patch deleted file mode 100644 index d23090f854..0000000000 --- a/queue-5.15/can-ti_hecc-fix-woverflow-compiler-warning.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 08824275fc5d0f95fad8b2a731390263ef8b77b3 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 15 Jul 2025 20:28:11 +0900 -Subject: can: ti_hecc: fix -Woverflow compiler warning - -From: Vincent Mailhol - -[ Upstream commit 7cae4d04717b002cffe41169da3f239c845a0723 ] - -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 -Link: https://patch.msgid.link/20250715-can-compile-test-v2-1-f7fd566db86f@wanadoo.fr -Signed-off-by: Marc Kleine-Budde -Signed-off-by: Sasha Levin ---- - drivers/net/can/ti_hecc.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c -index 353062ead98f..a589b659f892 100644 ---- a/drivers/net/can/ti_hecc.c -+++ b/drivers/net/can/ti_hecc.c -@@ -393,7 +393,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 */ --- -2.39.5 - diff --git a/queue-5.15/series b/queue-5.15/series index 26e8405c89..81c4d02e32 100644 --- a/queue-5.15/series +++ b/queue-5.15/series @@ -344,7 +344,6 @@ net-ag71xx-add-missing-check-after-dma-map.patch net-mlx5e-properly-access-rcu-protected-qdisc_sleepi.patch arm64-mark-kernel-as-tainted-on-sae-and-serror-panic.patch rcu-protect-defer_qs_iw_pending-from-data-race.patch -can-ti_hecc-fix-woverflow-compiler-warning.patch net-mctp-prevent-duplicate-binds.patch wifi-cfg80211-fix-interface-type-validation.patch net-ipv4-fix-incorrect-mtu-in-broadcast-routes.patch diff --git a/queue-5.4/can-ti_hecc-fix-woverflow-compiler-warning.patch b/queue-5.4/can-ti_hecc-fix-woverflow-compiler-warning.patch deleted file mode 100644 index afc707a55a..0000000000 --- a/queue-5.4/can-ti_hecc-fix-woverflow-compiler-warning.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 061439123b8958a480b2e95d738e9b8fc707039e Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 15 Jul 2025 20:28:11 +0900 -Subject: can: ti_hecc: fix -Woverflow compiler warning - -From: Vincent Mailhol - -[ Upstream commit 7cae4d04717b002cffe41169da3f239c845a0723 ] - -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 -Link: https://patch.msgid.link/20250715-can-compile-test-v2-1-f7fd566db86f@wanadoo.fr -Signed-off-by: Marc Kleine-Budde -Signed-off-by: Sasha Levin ---- - drivers/net/can/ti_hecc.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c -index d0a05fc5cc32..905fc3690e61 100644 ---- a/drivers/net/can/ti_hecc.c -+++ b/drivers/net/can/ti_hecc.c -@@ -393,7 +393,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 */ --- -2.39.5 - diff --git a/queue-5.4/series b/queue-5.4/series index d6513214d5..8e4f01ab61 100644 --- a/queue-5.4/series +++ b/queue-5.4/series @@ -210,7 +210,6 @@ be2net-use-correct-byte-order-and-format-string-for-.patch et131x-add-missing-check-after-dma-map.patch net-ag71xx-add-missing-check-after-dma-map.patch rcu-protect-defer_qs_iw_pending-from-data-race.patch -can-ti_hecc-fix-woverflow-compiler-warning.patch wifi-cfg80211-fix-interface-type-validation.patch net-ipv4-fix-incorrect-mtu-in-broadcast-routes.patch net-thunderx-fix-format-truncation-warning-in-bgx_ac.patch diff --git a/queue-6.1/can-ti_hecc-fix-woverflow-compiler-warning.patch b/queue-6.1/can-ti_hecc-fix-woverflow-compiler-warning.patch deleted file mode 100644 index 2a07d8df70..0000000000 --- a/queue-6.1/can-ti_hecc-fix-woverflow-compiler-warning.patch +++ /dev/null @@ -1,40 +0,0 @@ -From b34877c2fa311c52fe303b244458c2c764bb1400 Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 15 Jul 2025 20:28:11 +0900 -Subject: can: ti_hecc: fix -Woverflow compiler warning - -From: Vincent Mailhol - -[ Upstream commit 7cae4d04717b002cffe41169da3f239c845a0723 ] - -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 -Link: https://patch.msgid.link/20250715-can-compile-test-v2-1-f7fd566db86f@wanadoo.fr -Signed-off-by: Marc Kleine-Budde -Signed-off-by: Sasha Levin ---- - drivers/net/can/ti_hecc.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c -index 27700f72eac2..1b875236209e 100644 ---- a/drivers/net/can/ti_hecc.c -+++ b/drivers/net/can/ti_hecc.c -@@ -384,7 +384,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 */ --- -2.39.5 - diff --git a/queue-6.1/series b/queue-6.1/series index 1bfce78ef0..c6d879e32c 100644 --- a/queue-6.1/series +++ b/queue-6.1/series @@ -122,7 +122,6 @@ net-ag71xx-add-missing-check-after-dma-map.patch net-mlx5e-properly-access-rcu-protected-qdisc_sleepi.patch arm64-mark-kernel-as-tainted-on-sae-and-serror-panic.patch rcu-protect-defer_qs_iw_pending-from-data-race.patch -can-ti_hecc-fix-woverflow-compiler-warning.patch net-mctp-prevent-duplicate-binds.patch wifi-cfg80211-fix-interface-type-validation.patch net-ipv4-fix-incorrect-mtu-in-broadcast-routes.patch diff --git a/queue-6.6/can-ti_hecc-fix-woverflow-compiler-warning.patch b/queue-6.6/can-ti_hecc-fix-woverflow-compiler-warning.patch deleted file mode 100644 index 56f1a32fa4..0000000000 --- a/queue-6.6/can-ti_hecc-fix-woverflow-compiler-warning.patch +++ /dev/null @@ -1,40 +0,0 @@ -From f78974070a4f5aa66399c48a5a13118f1b41de2f Mon Sep 17 00:00:00 2001 -From: Sasha Levin -Date: Tue, 15 Jul 2025 20:28:11 +0900 -Subject: can: ti_hecc: fix -Woverflow compiler warning - -From: Vincent Mailhol - -[ Upstream commit 7cae4d04717b002cffe41169da3f239c845a0723 ] - -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 -Link: https://patch.msgid.link/20250715-can-compile-test-v2-1-f7fd566db86f@wanadoo.fr -Signed-off-by: Marc Kleine-Budde -Signed-off-by: Sasha Levin ---- - drivers/net/can/ti_hecc.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c -index 5aab440074c6..ee3e7de5b9bc 100644 ---- a/drivers/net/can/ti_hecc.c -+++ b/drivers/net/can/ti_hecc.c -@@ -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 */ --- -2.39.5 - diff --git a/queue-6.6/series b/queue-6.6/series index 677903e995..88e9f71d5b 100644 --- a/queue-6.6/series +++ b/queue-6.6/series @@ -151,7 +151,6 @@ net-ag71xx-add-missing-check-after-dma-map.patch net-mlx5e-properly-access-rcu-protected-qdisc_sleepi.patch arm64-mark-kernel-as-tainted-on-sae-and-serror-panic.patch rcu-protect-defer_qs_iw_pending-from-data-race.patch -can-ti_hecc-fix-woverflow-compiler-warning.patch net-mctp-prevent-duplicate-binds.patch wifi-cfg80211-fix-interface-type-validation.patch net-ipv4-fix-incorrect-mtu-in-broadcast-routes.patch