linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/2] Remove Intel Thunder Bay SOC support
@ 2023-12-13  6:08 nandhini.srikandan
  2023-12-13  6:08 ` [PATCH v1 1/2] spi: dw: " nandhini.srikandan
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: nandhini.srikandan @ 2023-12-13  6:08 UTC (permalink / raw)
  To: fancer.lancer, broonie, robh+dt, linux-spi, linux-kernel
  Cc: devicetree, mgross, kris.pan, kenchappa.demakkanavar,
	furong.zhou, mallikarjunappa.sangannavar, mahesh.r.vaidya,
	nandhini.srikandan

From: Nandhini Srikandan <nandhini.srikandan@intel.com>

This patch set removes Intel Thunder Bay specific code as the product              
got cancelled and there are no end customers.                                      
                                                                                   
Patch 1: Remove Intel Thunder Bay spi dw binding specific code.                    
Patch 2: Remove Intel Thunder Bay spi dw binding Documentation.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Nandhini Srikandan (2):
  spi: dw: Remove Intel Thunder Bay SOC support
  spi: dw: Remove Intel Thunder Bay SOC support

 Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml | 2 --
 drivers/spi/spi-dw-mmio.c                                  | 1 -
 2 files changed, 3 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v1 1/2] spi: dw: Remove Intel Thunder Bay SOC support
  2023-12-13  6:08 [PATCH v1 0/2] Remove Intel Thunder Bay SOC support nandhini.srikandan
@ 2023-12-13  6:08 ` nandhini.srikandan
  2023-12-13  6:08 ` [PATCH v1 2/2] " nandhini.srikandan
  2023-12-13 16:32 ` [PATCH v1 0/2] " Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: nandhini.srikandan @ 2023-12-13  6:08 UTC (permalink / raw)
  To: fancer.lancer, broonie, robh+dt, linux-spi, linux-kernel
  Cc: devicetree, mgross, kris.pan, kenchappa.demakkanavar,
	furong.zhou, mallikarjunappa.sangannavar, mahesh.r.vaidya,
	nandhini.srikandan

From: Nandhini Srikandan <nandhini.srikandan@intel.com>

Remove Intel Thunder Bay specific code as the product got cancelled and
there are no end customers or users.

Signed-off-by: Nandhini Srikandan <nandhini.srikandan@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/spi/spi-dw-mmio.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/spi/spi-dw-mmio.c b/drivers/spi/spi-dw-mmio.c
index 46801189a651..cc74cbe03431 100644
--- a/drivers/spi/spi-dw-mmio.c
+++ b/drivers/spi/spi-dw-mmio.c
@@ -411,7 +411,6 @@ static const struct of_device_id dw_spi_mmio_of_match[] = {
 	{ .compatible = "renesas,rzn1-spi", .data = dw_spi_pssi_init},
 	{ .compatible = "snps,dwc-ssi-1.01a", .data = dw_spi_hssi_init},
 	{ .compatible = "intel,keembay-ssi", .data = dw_spi_intel_init},
-	{ .compatible = "intel,thunderbay-ssi", .data = dw_spi_intel_init},
 	{
 		.compatible = "intel,mountevans-imc-ssi",
 		.data = dw_spi_mountevans_imc_init,
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v1 2/2] spi: dw: Remove Intel Thunder Bay SOC support
  2023-12-13  6:08 [PATCH v1 0/2] Remove Intel Thunder Bay SOC support nandhini.srikandan
  2023-12-13  6:08 ` [PATCH v1 1/2] spi: dw: " nandhini.srikandan
@ 2023-12-13  6:08 ` nandhini.srikandan
  2023-12-13 11:54   ` Krzysztof Kozlowski
  2023-12-13 16:32 ` [PATCH v1 0/2] " Mark Brown
  2 siblings, 1 reply; 5+ messages in thread
From: nandhini.srikandan @ 2023-12-13  6:08 UTC (permalink / raw)
  To: fancer.lancer, broonie, robh+dt, linux-spi, linux-kernel
  Cc: devicetree, mgross, kris.pan, kenchappa.demakkanavar,
	furong.zhou, mallikarjunappa.sangannavar, mahesh.r.vaidya,
	nandhini.srikandan

From: Nandhini Srikandan <nandhini.srikandan@intel.com>

Remove Intel Thunder Bay specific code as the product got cancelled and
there are no end customers or users.

Signed-off-by: Nandhini Srikandan <nandhini.srikandan@intel.com>
---
 Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml b/Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
index 6348a387a21c..fde3776a558b 100644
--- a/Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
+++ b/Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
@@ -72,8 +72,6 @@ properties:
           - const: snps,dw-apb-ssi
       - description: Intel Keem Bay SPI Controller
         const: intel,keembay-ssi
-      - description: Intel Thunder Bay SPI Controller
-        const: intel,thunderbay-ssi
       - description: Intel Mount Evans Integrated Management Complex SPI Controller
         const: intel,mountevans-imc-ssi
       - description: AMD Pensando Elba SoC SPI Controller
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v1 2/2] spi: dw: Remove Intel Thunder Bay SOC support
  2023-12-13  6:08 ` [PATCH v1 2/2] " nandhini.srikandan
@ 2023-12-13 11:54   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-12-13 11:54 UTC (permalink / raw)
  To: nandhini.srikandan, fancer.lancer, broonie, robh+dt, linux-spi,
	linux-kernel
  Cc: devicetree, mgross, kris.pan, kenchappa.demakkanavar,
	furong.zhou, mallikarjunappa.sangannavar, mahesh.r.vaidya

On 13/12/2023 07:08, nandhini.srikandan@intel.com wrote:
> From: Nandhini Srikandan <nandhini.srikandan@intel.com>
> 
> Remove Intel Thunder Bay specific code as the product got cancelled and
> there are no end customers or users.

Please use scripts/get_maintainers.pl to get a list of necessary people
and lists to CC (and consider --no-git-fallback argument). It might
happen, that command when run on an older kernel, gives you outdated
entries. Therefore please be sure you base your patches on recent Linux
kernel.

Other patches for removal of ThunderBar had the same issue, so it seems
like a consistent practice in your team. Can you fix it?

Please use subject prefixes matching the subsystem. You can get them for
example with `git log --oneline -- DIRECTORY_OR_FILE` on the directory
your patch is touching.

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v1 0/2] Remove Intel Thunder Bay SOC support
  2023-12-13  6:08 [PATCH v1 0/2] Remove Intel Thunder Bay SOC support nandhini.srikandan
  2023-12-13  6:08 ` [PATCH v1 1/2] spi: dw: " nandhini.srikandan
  2023-12-13  6:08 ` [PATCH v1 2/2] " nandhini.srikandan
@ 2023-12-13 16:32 ` Mark Brown
  2 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2023-12-13 16:32 UTC (permalink / raw)
  To: fancer.lancer, robh+dt, linux-spi, linux-kernel, nandhini.srikandan
  Cc: devicetree, mgross, kris.pan, kenchappa.demakkanavar,
	furong.zhou, mallikarjunappa.sangannavar, mahesh.r.vaidya

On Wed, 13 Dec 2023 14:08:34 +0800, nandhini.srikandan@intel.com wrote:
> This patch set removes Intel Thunder Bay specific code as the product
> got cancelled and there are no end customers.
> 
> Patch 1: Remove Intel Thunder Bay spi dw binding specific code.
> Patch 2: Remove Intel Thunder Bay spi dw binding Documentation.
> 
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/2] spi: dw: Remove Intel Thunder Bay SOC support
      commit: e1fca6957f1966cb6e75cdc354f4bcaed230a454
[2/2] spi: dw: Remove Intel Thunder Bay SOC support
      commit: e1fca6957f1966cb6e75cdc354f4bcaed230a454

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-12-13 16:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-13  6:08 [PATCH v1 0/2] Remove Intel Thunder Bay SOC support nandhini.srikandan
2023-12-13  6:08 ` [PATCH v1 1/2] spi: dw: " nandhini.srikandan
2023-12-13  6:08 ` [PATCH v1 2/2] " nandhini.srikandan
2023-12-13 11:54   ` Krzysztof Kozlowski
2023-12-13 16:32 ` [PATCH v1 0/2] " Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).