]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
Drop alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
authorSasha Levin <sashal@kernel.org>
Mon, 31 May 2021 21:43:16 +0000 (17:43 -0400)
committerSasha Levin <sashal@kernel.org>
Mon, 31 May 2021 21:43:16 +0000 (17:43 -0400)
Signed-off-by: Sasha Levin <sashal@kernel.org>
14 files changed:
queue-4.14/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-4.14/series
queue-4.19/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-4.19/series
queue-4.4/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-4.4/series
queue-4.9/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-4.9/series
queue-5.10/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-5.10/series
queue-5.12/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-5.12/series
queue-5.4/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch [deleted file]
queue-5.4/series

diff --git a/queue-4.14/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-4.14/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index a14e025..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From 7cbbe5db61e1c252555d43d17e9a8b765e37c724 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index d77dcba276b5..b0ef47bc6521 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -109,7 +109,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index 997d61b4859c35c33640bc7e4bb5d75dfa2c50cf..7d7f0ec42bb4308de2cb361c169e5e37feda996a 100644 (file)
@@ -47,7 +47,6 @@ serial-max310x-unregister-uart-driver-in-case-of-fai.patch
 net-fujitsu-fix-potential-null-ptr-deref.patch
 net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 char-hpet-add-checks-after-calling-ioremap.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch
 dmaengine-qcom_hidma-comment-platform_driver_registe.patch
 libertas-register-sysfs-groups-properly.patch
diff --git a/queue-4.19/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-4.19/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index 68e29eb..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From 59ba66346609fced64cd32721c8393318774d236 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index d77dcba276b5..b0ef47bc6521 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -109,7 +109,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index 94ca4c96e2a09fe9185d4c1755271907c2747abe..64761ad8b0831fbcc9cd4070e53e7aa10b503a05 100644 (file)
@@ -77,7 +77,6 @@ serial-max310x-unregister-uart-driver-in-case-of-fai.patch
 net-fujitsu-fix-potential-null-ptr-deref.patch
 net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 char-hpet-add-checks-after-calling-ioremap.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch
 dmaengine-qcom_hidma-comment-platform_driver_registe.patch
 libertas-register-sysfs-groups-properly.patch
diff --git a/queue-4.4/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-4.4/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index 7fa5903..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From efa61248647fc1b8a9236102c16e94984cd2d593 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index b8e2391c33ff..4fa3b0f2a270 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -109,7 +109,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index d0d047d18d947721e41507fa4095821b569507b4..589ff7b67058eb8ac180bfa6d70434e7f00dfbbc 100644 (file)
@@ -32,7 +32,6 @@ platform-x86-hp_accel-avoid-invoking-_ini-to-speed-u.patch
 net-fujitsu-fix-potential-null-ptr-deref.patch
 net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 char-hpet-add-checks-after-calling-ioremap.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch
 libertas-register-sysfs-groups-properly.patch
 media-dvb-add-check-on-sp8870_readreg-return.patch
diff --git a/queue-4.9/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-4.9/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index 3ad0326..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From 25c7a22d62833b82a91f50224e110ac29e697faf Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index ad42d2364199..ca4350bd24d1 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -109,7 +109,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index a7f59cd0841d6bcb90358b324790722a12973daf..bbd7c09bcca8726f7dd7c9c318f0dc47f859c28f 100644 (file)
@@ -40,7 +40,6 @@ serial-max310x-unregister-uart-driver-in-case-of-fai.patch
 net-fujitsu-fix-potential-null-ptr-deref.patch
 net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 char-hpet-add-checks-after-calling-ioremap.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch
 dmaengine-qcom_hidma-comment-platform_driver_registe.patch
 libertas-register-sysfs-groups-properly.patch
diff --git a/queue-5.10/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-5.10/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index f911b5b..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From 0995498f9267828a1af20feabaadf857d1e9a6cb Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index ae93191ffdc9..8b21920be4bb 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -94,7 +94,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index f4ed1960f2e0b10f1775a225077c63a8123f2b6a..0b1577bfc97d67308844baa0011980077789b99c 100644 (file)
@@ -143,7 +143,6 @@ net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 revert-char-hpet-fix-a-missing-check-of-ioremap.patch
 char-hpet-add-checks-after-calling-ioremap.patch
 revert-alsa-gus-add-a-check-of-the-status-of-snd_ctl.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 revert-alsa-usx2y-fix-potential-null-pointer-derefer.patch
 revert-isdn-misdninfineon-fix-potential-null-pointer.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch
diff --git a/queue-5.12/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-5.12/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index ea290bf..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From f6cdab7be98defd043097e7b2a4e46d0597ec6bd Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index 95290ffe5c6e..ed3a87ebe3f4 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -93,7 +93,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index 76a526a0b3465e36eb0850aa4746f932c40df6e3..d8a326f180e5441ca4c8276bf607d707df3b8e65 100644 (file)
@@ -173,7 +173,6 @@ net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 revert-char-hpet-fix-a-missing-check-of-ioremap.patch
 char-hpet-add-checks-after-calling-ioremap.patch
 revert-alsa-gus-add-a-check-of-the-status-of-snd_ctl.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 revert-alsa-usx2y-fix-potential-null-pointer-derefer.patch
 revert-isdn-misdninfineon-fix-potential-null-pointer.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch
diff --git a/queue-5.4/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch b/queue-5.4/alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
deleted file mode 100644 (file)
index 29c302b..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-From c5a194b883ad82be25a994bc6cc48d25ddb06ea0 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 3 May 2021 13:57:02 +0200
-Subject: ALSA: sb8: Add a comment note regarding an unused pointer
-
-From: Atul Gopinathan <atulgopinathan@gmail.com>
-
-[ Upstream commit a28591f61b60fac820c6de59826ffa710e5e314e ]
-
-The field "fm_res" of "struct snd_sb8" is never used/dereferenced
-throughout the sb8.c code. Therefore there is no need for any null value
-check after the "request_region()".
-
-Add a comment note to make developers know about this and prevent any
-"NULL check" patches on this part of code.
-
-Cc: Takashi Iwai <tiwai@suse.de>
-Signed-off-by: Atul Gopinathan <atulgopinathan@gmail.com>
-Link: https://lore.kernel.org/r/20210503115736.2104747-36-gregkh@linuxfoundation.org
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/isa/sb/sb8.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/sound/isa/sb/sb8.c b/sound/isa/sb/sb8.c
-index 6f1fc8789676..4386c24d2dcc 100644
---- a/sound/isa/sb/sb8.c
-+++ b/sound/isa/sb/sb8.c
-@@ -94,7 +94,11 @@ static int snd_sb8_probe(struct device *pdev, unsigned int dev)
-       acard = card->private_data;
-       card->private_free = snd_sb8_free;
--      /* block the 0x388 port to avoid PnP conflicts */
-+      /*
-+       * Block the 0x388 port to avoid PnP conflicts.
-+       * No need to check this value after request_region,
-+       * as we never do anything with it.
-+       */
-       acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
-       if (port[dev] != SNDRV_AUTO_PORT) {
--- 
-2.30.2
-
index 9dfad70ca30cb2c83d51b3095bf74df0f19fbb4a..b8ab2385b919076afbd5a535df0bb2c8acd6b2ba 100644 (file)
@@ -96,7 +96,6 @@ net-caif-remove-bug_on-dev-null-in-caif_xmit.patch
 revert-char-hpet-fix-a-missing-check-of-ioremap.patch
 char-hpet-add-checks-after-calling-ioremap.patch
 revert-alsa-gus-add-a-check-of-the-status-of-snd_ctl.patch
-alsa-sb8-add-a-comment-note-regarding-an-unused-poin.patch
 revert-alsa-usx2y-fix-potential-null-pointer-derefer.patch
 revert-isdn-misdninfineon-fix-potential-null-pointer.patch
 isdn-misdninfineon-check-cleanup-ioremap-failure-cor.patch