Is not complete and not quite correct.
gpio-vf610-connect-gpio-label-to-dev-name.patch
hwmon-ltc2945-handle-error-case-in-ltc2945_value_sto.patch
scsi-aic94xx-add-missing-check-for-dma_map_single.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
dm-remove-flush_scheduled_work-during-local_exit.patch
mfd-pcf50633-adc-fix-potential-memleak-in-pcf50633_a.patch
mtd-rawnand-sunxi-fix-the-size-of-the-last-oob-regio.patch
+++ /dev/null
-From 7ae079fbda5ccd60b72d76e6f5d44e8355d3f4dd Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index cbcba614b2533..bc539010f2b98 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -191,7 +191,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-
gpio-vf610-connect-gpio-label-to-dev-name.patch
hwmon-ltc2945-handle-error-case-in-ltc2945_value_sto.patch
scsi-aic94xx-add-missing-check-for-dma_map_single.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
spi-bcm63xx-hsspi-fix-pm_runtime.patch
spi-bcm63xx-hsspi-fix-multi-bit-mode-setting.patch
hwmon-mlxreg-fan-return-zero-speed-for-broken-fan.patch
+++ /dev/null
-From e19b7cbc048e87c72124953619a3b2ea546472ce Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index 2ad7b3f3666be..443a480767e09 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -192,7 +192,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-
drm-amdgpu-fix-enum-odm_combine_mode-mismatch.patch
scsi-mpt3sas-fix-a-memory-leak.patch
scsi-aic94xx-add-missing-check-for-dma_map_single.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
spi-bcm63xx-hsspi-fix-pm_runtime.patch
spi-bcm63xx-hsspi-fix-multi-bit-mode-setting.patch
hwmon-mlxreg-fan-return-zero-speed-for-broken-fan.patch
+++ /dev/null
-From fc3dd7aee110274dc3d76f77714fea9dadf77d5e Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index 1f08d7553f079..f591a543b1d07 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -193,7 +193,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-
asoc-codecs-rx-macro-move-to-individual-clks-from-bu.patch
asoc-codecs-tx-macro-move-to-individual-clks-from-bu.patch
asoc-codecs-lpass-fix-incorrect-mclk-rate.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
spi-bcm63xx-hsspi-fix-multi-bit-mode-setting.patch
hwmon-mlxreg-fan-return-zero-speed-for-broken-fan.patch
asoc-tlv320adcx140-fix-ti-gpio-config-dt-property-in.patch
+++ /dev/null
-From c561c7820378f83268550c350b27a2a953fa7acb Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index b871fd810d801..a74345ed0e2ff 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -194,7 +194,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-
gpio-vf610-connect-gpio-label-to-dev-name.patch
hwmon-ltc2945-handle-error-case-in-ltc2945_value_sto.patch
scsi-aic94xx-add-missing-check-for-dma_map_single.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
spi-bcm63xx-hsspi-fix-pm_runtime.patch
spi-bcm63xx-hsspi-fix-multi-bit-mode-setting.patch
hwmon-mlxreg-fan-return-zero-speed-for-broken-fan.patch
+++ /dev/null
-From 69d60fd26d677a9e0974c1f27f6a274ae6e6ae31 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index 509476a2d79bb..657855c56c1cb 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -192,7 +192,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-
asoc-qcom-q6apm-dai-add-sndrv_pcm_info_batch-flag.patch
asoc-codecs-lpass-register-mclk-after-runtime-pm.patch
asoc-codecs-lpass-fix-incorrect-mclk-rate.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
drm-amd-display-don-t-call-dc_interrupt_set-for-disa.patch
hid-logitech-hidpp-hard-code-hid-1.0-fast-scroll-sup.patch
spi-bcm63xx-hsspi-fix-multi-bit-mode-setting.patch
+++ /dev/null
-From aca778056048ad947ce89d030e6e9f3ba0b503f7 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index b871fd810d801..a74345ed0e2ff 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -194,7 +194,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-
asoc-qcom-q6apm-dai-add-sndrv_pcm_info_batch-flag.patch
asoc-codecs-lpass-register-mclk-after-runtime-pm.patch
asoc-codecs-lpass-fix-incorrect-mclk-rate.patch
-spi-bcm63xx-hsspi-endianness-fix-for-arm-based-soc.patch
drm-amd-display-don-t-call-dc_interrupt_set-for-disa.patch
hid-logitech-hidpp-hard-code-hid-1.0-fast-scroll-sup.patch
spi-bcm63xx-hsspi-fix-multi-bit-mode-setting.patch
+++ /dev/null
-From a8a67407f1e1f787a2a27ae140a965d7975e2648 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 6 Feb 2023 22:58:17 -0800
-Subject: spi: bcm63xx-hsspi: Endianness fix for ARM based SoC
-
-From: William Zhang <william.zhang@broadcom.com>
-
-[ Upstream commit 85a84a61699990db6a025b5073f337f49933a875 ]
-
-HSSPI controller uses big endian for the opcode in the message to the
-controller ping pong buffer. Use cpu_to_be16 to properly handle the
-endianness for both big and little endian host.
-
-Fixes: 142168eba9dc ("spi: bcm63xx-hsspi: add bcm63xx HSSPI driver")
-Signed-off-by: Kursad Oney <kursad.oney@broadcom.com>
-Signed-off-by: William Zhang <william.zhang@broadcom.com>
-Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-
-Link: https://lore.kernel.org/r/20230207065826.285013-7-william.zhang@broadcom.com
-Signed-off-by: Mark Brown <broonie@kernel.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/spi/spi-bcm63xx-hsspi.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c
-index b871fd810d801..a74345ed0e2ff 100644
---- a/drivers/spi/spi-bcm63xx-hsspi.c
-+++ b/drivers/spi/spi-bcm63xx-hsspi.c
-@@ -194,7 +194,7 @@ static int bcm63xx_hsspi_do_txrx(struct spi_device *spi, struct spi_transfer *t)
- tx += curr_step;
- }
-
-- __raw_writew(opcode | curr_step, bs->fifo);
-+ __raw_writew((u16)cpu_to_be16(opcode | curr_step), bs->fifo);
-
- /* enable interrupt */
- __raw_writel(HSSPI_PINGx_CMD_DONE(0),
---
-2.39.2
-