]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop imx sof patches.
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 16 Jun 2020 17:14:41 +0000 (19:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 16 Jun 2020 17:14:41 +0000 (19:14 +0200)
queue-5.4/asoc-sof-imx-fix-undefined-reference-issue.patch [deleted file]
queue-5.4/asoc-sof-imx8-fix-randbuild-error.patch [deleted file]
queue-5.4/series
queue-5.6/asoc-sof-imx-fix-undefined-reference-issue.patch [deleted file]
queue-5.6/asoc-sof-imx8-fix-randbuild-error.patch [deleted file]
queue-5.6/series
queue-5.7/asoc-sof-imx-fix-undefined-reference-issue.patch [deleted file]
queue-5.7/asoc-sof-imx8-fix-randbuild-error.patch [deleted file]
queue-5.7/series

diff --git a/queue-5.4/asoc-sof-imx-fix-undefined-reference-issue.patch b/queue-5.4/asoc-sof-imx-fix-undefined-reference-issue.patch
deleted file mode 100644 (file)
index 30ea5ca..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-From 94ee421f03f02b57be81ab8bf490957c06ede44d Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 Apr 2020 10:18:29 +0300
-Subject: ASoC: SOF: imx: fix undefined reference issue
-
-From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
-
-[ Upstream commit cb0312f61c3e95c71ec8955a94d42bf7eb5ba617 ]
-
-make.cross ARCH=mips allyesconfig fails with the following error:
-
-sound/soc/sof/sof-of-dev.o:(.data.sof_of_imx8qxp_desc+0x40): undefined
-reference to `sof_imx8x_ops'.
-
-This seems to be a Makefile order issue, solve by using the same
-structure as for Intel platforms.
-
-Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF
-dependency")
-Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
-Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-Link: https://lore.kernel.org/r/20200409071832.2039-3-daniel.baluta@oss.nxp.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/soc/sof/imx/Kconfig | 17 +++++++++++++----
- 1 file changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig
-index b4f0426685c4..d44bbbf24735 100644
---- a/sound/soc/sof/imx/Kconfig
-+++ b/sound/soc/sof/imx/Kconfig
-@@ -11,17 +11,26 @@ config SND_SOC_SOF_IMX_TOPLEVEL
- if SND_SOC_SOF_IMX_TOPLEVEL
-+config SND_SOC_SOF_IMX_OF
-+      def_tristate SND_SOC_SOF_OF
-+      select SND_SOC_SOF_IMX8 if SND_SOC_SOF_IMX8_SUPPORT
-+      help
-+        This option is not user-selectable but automagically handled by
-+        'select' statements at a higher level
-+
- config SND_SOC_SOF_IMX8_SUPPORT
-       bool "SOF support for i.MX8"
--      depends on IMX_SCU
--      select IMX_DSP
-       help
-           This adds support for Sound Open Firmware for NXP i.MX8 platforms
-           Say Y if you have such a device.
-           If unsure select "N".
- config SND_SOC_SOF_IMX8
--      def_tristate SND_SOC_SOF_OF
--      depends on SND_SOC_SOF_IMX8_SUPPORT
-+      tristate
-+      depends on IMX_SCU
-+      select IMX_DSP
-+      help
-+        This option is not user-selectable but automagically handled by
-+        'select' statements at a higher level
- endif ## SND_SOC_SOF_IMX_IMX_TOPLEVEL
--- 
-2.25.1
-
diff --git a/queue-5.4/asoc-sof-imx8-fix-randbuild-error.patch b/queue-5.4/asoc-sof-imx8-fix-randbuild-error.patch
deleted file mode 100644 (file)
index 5883433..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-From 982d52b1d94c8ccf0283b57f17e4230ba581fd41 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 Apr 2020 10:18:28 +0300
-Subject: ASoC: SOF: imx8: Fix randbuild error
-
-From: YueHaibing <yuehaibing@huawei.com>
-
-[ Upstream commit fe17e6cdc0fefca96ba9659be4b2b07487cbf0c5 ]
-
-when do randconfig like this:
-CONFIG_SND_SOC_SOF_IMX8_SUPPORT=y
-CONFIG_SND_SOC_SOF_IMX8=y
-CONFIG_SND_SOC_SOF_OF=y
-CONFIG_IMX_DSP=m
-CONFIG_IMX_SCU=y
-
-there is a link error:
-
-sound/soc/sof/imx/imx8.o: In function 'imx8_send_msg':
-imx8.c:(.text+0x380): undefined reference to 'imx_dsp_ring_doorbell'
-
-Select IMX_DSP in SND_SOC_SOF_IMX8_SUPPORT to fix this
-
-Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF dependency")
-Reported-by: Hulk Robot <hulkci@huawei.com>
-Signed-off-by: YueHaibing <yuehaibing@huawei.com>
-Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-Link: https://lore.kernel.org/r/20200409071832.2039-2-daniel.baluta@oss.nxp.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/soc/sof/imx/Kconfig | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig
-index 71f318bc2c74..b4f0426685c4 100644
---- a/sound/soc/sof/imx/Kconfig
-+++ b/sound/soc/sof/imx/Kconfig
-@@ -14,7 +14,7 @@ if SND_SOC_SOF_IMX_TOPLEVEL
- config SND_SOC_SOF_IMX8_SUPPORT
-       bool "SOF support for i.MX8"
-       depends on IMX_SCU
--      depends on IMX_DSP
-+      select IMX_DSP
-       help
-           This adds support for Sound Open Firmware for NXP i.MX8 platforms
-           Say Y if you have such a device.
--- 
-2.25.1
-
index dd9feb1aff63468081b4e6929ccef7d556592cbc..8295dc68d700bb4fe647f7eef4e3d1f37d7f12f5 100644 (file)
@@ -14,8 +14,6 @@ csky-fixup-abiv2-syscall_trace-break-a4-a5.patch
 gfs2-even-more-gfs2_find_jhead-fixes.patch
 drivers-net-ibmvnic-update-vnic-protocol-version-rep.patch
 powerpc-xive-clear-the-page-tables-for-the-esb-io-ma.patch
-asoc-sof-imx8-fix-randbuild-error.patch
-asoc-sof-imx-fix-undefined-reference-issue.patch
 spi-dw-fix-native-cs-being-unset.patch
 ath9k_htc-silence-undersized-packet-warnings.patch
 smack-avoid-unused-sip-variable-warning.patch
diff --git a/queue-5.6/asoc-sof-imx-fix-undefined-reference-issue.patch b/queue-5.6/asoc-sof-imx-fix-undefined-reference-issue.patch
deleted file mode 100644 (file)
index bfd45fb..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-From e64fd41107edbf2e2308271bcac2f04789591438 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 Apr 2020 10:18:29 +0300
-Subject: ASoC: SOF: imx: fix undefined reference issue
-
-From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
-
-[ Upstream commit cb0312f61c3e95c71ec8955a94d42bf7eb5ba617 ]
-
-make.cross ARCH=mips allyesconfig fails with the following error:
-
-sound/soc/sof/sof-of-dev.o:(.data.sof_of_imx8qxp_desc+0x40): undefined
-reference to `sof_imx8x_ops'.
-
-This seems to be a Makefile order issue, solve by using the same
-structure as for Intel platforms.
-
-Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF
-dependency")
-Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
-Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-Link: https://lore.kernel.org/r/20200409071832.2039-3-daniel.baluta@oss.nxp.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/soc/sof/imx/Kconfig | 17 +++++++++++++----
- 1 file changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig
-index 812749064ca8..9586635cf8ab 100644
---- a/sound/soc/sof/imx/Kconfig
-+++ b/sound/soc/sof/imx/Kconfig
-@@ -11,17 +11,26 @@ config SND_SOC_SOF_IMX_TOPLEVEL
- if SND_SOC_SOF_IMX_TOPLEVEL
-+config SND_SOC_SOF_IMX_OF
-+      def_tristate SND_SOC_SOF_OF
-+      select SND_SOC_SOF_IMX8 if SND_SOC_SOF_IMX8_SUPPORT
-+      help
-+        This option is not user-selectable but automagically handled by
-+        'select' statements at a higher level
-+
- config SND_SOC_SOF_IMX8_SUPPORT
-       bool "SOF support for i.MX8"
--      depends on IMX_SCU
--      select IMX_DSP
-       help
-         This adds support for Sound Open Firmware for NXP i.MX8 platforms
-         Say Y if you have such a device.
-         If unsure select "N".
- config SND_SOC_SOF_IMX8
--      def_tristate SND_SOC_SOF_OF
--      depends on SND_SOC_SOF_IMX8_SUPPORT
-+      tristate
-+      depends on IMX_SCU
-+      select IMX_DSP
-+      help
-+        This option is not user-selectable but automagically handled by
-+        'select' statements at a higher level
- endif ## SND_SOC_SOF_IMX_IMX_TOPLEVEL
--- 
-2.25.1
-
diff --git a/queue-5.6/asoc-sof-imx8-fix-randbuild-error.patch b/queue-5.6/asoc-sof-imx8-fix-randbuild-error.patch
deleted file mode 100644 (file)
index 94a8a3a..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-From 7b719d9459231033d48e7763e3f805ce40647528 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 Apr 2020 10:18:28 +0300
-Subject: ASoC: SOF: imx8: Fix randbuild error
-
-From: YueHaibing <yuehaibing@huawei.com>
-
-[ Upstream commit fe17e6cdc0fefca96ba9659be4b2b07487cbf0c5 ]
-
-when do randconfig like this:
-CONFIG_SND_SOC_SOF_IMX8_SUPPORT=y
-CONFIG_SND_SOC_SOF_IMX8=y
-CONFIG_SND_SOC_SOF_OF=y
-CONFIG_IMX_DSP=m
-CONFIG_IMX_SCU=y
-
-there is a link error:
-
-sound/soc/sof/imx/imx8.o: In function 'imx8_send_msg':
-imx8.c:(.text+0x380): undefined reference to 'imx_dsp_ring_doorbell'
-
-Select IMX_DSP in SND_SOC_SOF_IMX8_SUPPORT to fix this
-
-Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF dependency")
-Reported-by: Hulk Robot <hulkci@huawei.com>
-Signed-off-by: YueHaibing <yuehaibing@huawei.com>
-Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-Link: https://lore.kernel.org/r/20200409071832.2039-2-daniel.baluta@oss.nxp.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/soc/sof/imx/Kconfig | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig
-index bae4f7bf5f75..812749064ca8 100644
---- a/sound/soc/sof/imx/Kconfig
-+++ b/sound/soc/sof/imx/Kconfig
-@@ -14,7 +14,7 @@ if SND_SOC_SOF_IMX_TOPLEVEL
- config SND_SOC_SOF_IMX8_SUPPORT
-       bool "SOF support for i.MX8"
-       depends on IMX_SCU
--      depends on IMX_DSP
-+      select IMX_DSP
-       help
-         This adds support for Sound Open Firmware for NXP i.MX8 platforms
-         Say Y if you have such a device.
--- 
-2.25.1
-
index 8bcba697a1d48e21ab8f45aa8d494760a04377a0..241caad293e76ac0283f1158079aeb4ae1d2f840 100644 (file)
@@ -27,8 +27,6 @@ selftests-fix-flower-parent-qdisc.patch
 fanotify-fix-ignore-mask-logic-for-events-on-child-a.patch
 driver-core-update-device-link-status-correctly-for-.patch
 powerpc-xive-clear-the-page-tables-for-the-esb-io-ma.patch
-asoc-sof-imx8-fix-randbuild-error.patch
-asoc-sof-imx-fix-undefined-reference-issue.patch
 spi-dw-fix-native-cs-being-unset.patch
 ath9k_htc-silence-undersized-packet-warnings.patch
 smack-avoid-unused-sip-variable-warning.patch
diff --git a/queue-5.7/asoc-sof-imx-fix-undefined-reference-issue.patch b/queue-5.7/asoc-sof-imx-fix-undefined-reference-issue.patch
deleted file mode 100644 (file)
index 55cc187..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-From dead36a88435abfde8c64da87d4c50afa7e7ba3a Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 Apr 2020 10:18:29 +0300
-Subject: ASoC: SOF: imx: fix undefined reference issue
-
-From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
-
-[ Upstream commit cb0312f61c3e95c71ec8955a94d42bf7eb5ba617 ]
-
-make.cross ARCH=mips allyesconfig fails with the following error:
-
-sound/soc/sof/sof-of-dev.o:(.data.sof_of_imx8qxp_desc+0x40): undefined
-reference to `sof_imx8x_ops'.
-
-This seems to be a Makefile order issue, solve by using the same
-structure as for Intel platforms.
-
-Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF
-dependency")
-Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
-Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-Link: https://lore.kernel.org/r/20200409071832.2039-3-daniel.baluta@oss.nxp.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/soc/sof/imx/Kconfig | 17 +++++++++++++----
- 1 file changed, 13 insertions(+), 4 deletions(-)
-
-diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig
-index 812749064ca8..9586635cf8ab 100644
---- a/sound/soc/sof/imx/Kconfig
-+++ b/sound/soc/sof/imx/Kconfig
-@@ -11,17 +11,26 @@ config SND_SOC_SOF_IMX_TOPLEVEL
- if SND_SOC_SOF_IMX_TOPLEVEL
-+config SND_SOC_SOF_IMX_OF
-+      def_tristate SND_SOC_SOF_OF
-+      select SND_SOC_SOF_IMX8 if SND_SOC_SOF_IMX8_SUPPORT
-+      help
-+        This option is not user-selectable but automagically handled by
-+        'select' statements at a higher level
-+
- config SND_SOC_SOF_IMX8_SUPPORT
-       bool "SOF support for i.MX8"
--      depends on IMX_SCU
--      select IMX_DSP
-       help
-         This adds support for Sound Open Firmware for NXP i.MX8 platforms
-         Say Y if you have such a device.
-         If unsure select "N".
- config SND_SOC_SOF_IMX8
--      def_tristate SND_SOC_SOF_OF
--      depends on SND_SOC_SOF_IMX8_SUPPORT
-+      tristate
-+      depends on IMX_SCU
-+      select IMX_DSP
-+      help
-+        This option is not user-selectable but automagically handled by
-+        'select' statements at a higher level
- endif ## SND_SOC_SOF_IMX_IMX_TOPLEVEL
--- 
-2.25.1
-
diff --git a/queue-5.7/asoc-sof-imx8-fix-randbuild-error.patch b/queue-5.7/asoc-sof-imx8-fix-randbuild-error.patch
deleted file mode 100644 (file)
index e94e4aa..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-From fef043431a380ea5fa30c357cdaf25feee479fdd Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 Apr 2020 10:18:28 +0300
-Subject: ASoC: SOF: imx8: Fix randbuild error
-
-From: YueHaibing <yuehaibing@huawei.com>
-
-[ Upstream commit fe17e6cdc0fefca96ba9659be4b2b07487cbf0c5 ]
-
-when do randconfig like this:
-CONFIG_SND_SOC_SOF_IMX8_SUPPORT=y
-CONFIG_SND_SOC_SOF_IMX8=y
-CONFIG_SND_SOC_SOF_OF=y
-CONFIG_IMX_DSP=m
-CONFIG_IMX_SCU=y
-
-there is a link error:
-
-sound/soc/sof/imx/imx8.o: In function 'imx8_send_msg':
-imx8.c:(.text+0x380): undefined reference to 'imx_dsp_ring_doorbell'
-
-Select IMX_DSP in SND_SOC_SOF_IMX8_SUPPORT to fix this
-
-Fixes: f9ad75468453 ("ASoC: SOF: imx: fix reverse CONFIG_SND_SOC_SOF_OF dependency")
-Reported-by: Hulk Robot <hulkci@huawei.com>
-Signed-off-by: YueHaibing <yuehaibing@huawei.com>
-Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
-Link: https://lore.kernel.org/r/20200409071832.2039-2-daniel.baluta@oss.nxp.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- sound/soc/sof/imx/Kconfig | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/sound/soc/sof/imx/Kconfig b/sound/soc/sof/imx/Kconfig
-index bae4f7bf5f75..812749064ca8 100644
---- a/sound/soc/sof/imx/Kconfig
-+++ b/sound/soc/sof/imx/Kconfig
-@@ -14,7 +14,7 @@ if SND_SOC_SOF_IMX_TOPLEVEL
- config SND_SOC_SOF_IMX8_SUPPORT
-       bool "SOF support for i.MX8"
-       depends on IMX_SCU
--      depends on IMX_DSP
-+      select IMX_DSP
-       help
-         This adds support for Sound Open Firmware for NXP i.MX8 platforms
-         Say Y if you have such a device.
--- 
-2.25.1
-
index 5802e5e9b2583439a8addf59cc572bdd26003c92..e955752138f204a809ba92fe93227fec580e680a 100644 (file)
@@ -19,8 +19,6 @@ perf-probe-accept-the-instance-number-of-kretprobe-e.patch
 driver-core-update-device-link-status-correctly-for-.patch
 fanotify-fix-ignore-mask-logic-for-events-on-child-a.patch
 powerpc-xive-clear-the-page-tables-for-the-esb-io-ma.patch
-asoc-sof-imx8-fix-randbuild-error.patch
-asoc-sof-imx-fix-undefined-reference-issue.patch
 spi-dw-fix-native-cs-being-unset.patch
 ath9k_htc-silence-undersized-packet-warnings.patch
 smack-avoid-unused-sip-variable-warning.patch