]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop can patch from everywhere
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 22 Aug 2025 08:23:45 +0000 (10:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 22 Aug 2025 08:23:45 +0000 (10:23 +0200)
queue-5.10/can-ti_hecc-fix-woverflow-compiler-warning.patch [deleted file]
queue-5.10/series
queue-5.15/can-ti_hecc-fix-woverflow-compiler-warning.patch [deleted file]
queue-5.15/series
queue-5.4/can-ti_hecc-fix-woverflow-compiler-warning.patch [deleted file]
queue-5.4/series
queue-6.1/can-ti_hecc-fix-woverflow-compiler-warning.patch [deleted file]
queue-6.1/series
queue-6.6/can-ti_hecc-fix-woverflow-compiler-warning.patch [deleted file]
queue-6.6/series

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 (file)
index 3d31f69..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-From bdbf3e2b3c973d57ce423b6343388044f9670e0e Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 15 Jul 2025 20:28:11 +0900
-Subject: can: ti_hecc: fix -Woverflow compiler warning
-
-From: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
-
-[ 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 <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>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- 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
-
index c9c793ff0f7f8fa10e256659d6e6181fafd4f3dc..ca7fb2d80f2a5aedec77d601b9386d255c65bd99 100644 (file)
@@ -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 (file)
index d23090f..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-From 08824275fc5d0f95fad8b2a731390263ef8b77b3 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 15 Jul 2025 20:28:11 +0900
-Subject: can: ti_hecc: fix -Woverflow compiler warning
-
-From: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
-
-[ 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 <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>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- 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
-
index 26e8405c89d0f5fa4aca254f0326e1f2e9f82de1..81c4d02e322e832f2fd72a866216b251c07c685e 100644 (file)
@@ -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 (file)
index afc707a..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-From 061439123b8958a480b2e95d738e9b8fc707039e Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 15 Jul 2025 20:28:11 +0900
-Subject: can: ti_hecc: fix -Woverflow compiler warning
-
-From: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
-
-[ 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 <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>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- 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
-
index d6513214d5d3d710d77542e83920d3f7e1665eee..8e4f01ab6141b1e0230e68de4dca5cae80fa7e40 100644 (file)
@@ -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 (file)
index 2a07d8d..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-From b34877c2fa311c52fe303b244458c2c764bb1400 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 15 Jul 2025 20:28:11 +0900
-Subject: can: ti_hecc: fix -Woverflow compiler warning
-
-From: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
-
-[ 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 <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>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- 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
-
index 1bfce78ef0f58e70e192f6eece0bafbf9b77cc37..c6d879e32c5d449984bb08b9a51e35a058939725 100644 (file)
@@ -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 (file)
index 56f1a32..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-From f78974070a4f5aa66399c48a5a13118f1b41de2f Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 15 Jul 2025 20:28:11 +0900
-Subject: can: ti_hecc: fix -Woverflow compiler warning
-
-From: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
-
-[ 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 <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>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- 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
-
index 677903e99599137f3f5e997faed86b08a845fa79..88e9f71d5b9a21e4f07fb89d3b0786adb49f81ca 100644 (file)
@@ -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