Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Sasha Levin <sashal@kernel.org>
Cc: stable@vger.kernel.org, Johan Hovold <johan@kernel.org>,
	Masayuki Ohtake <masa-korg@dsn.okisemi.com>,
	Mark Brown <broonie@kernel.org>
Subject: Re: [PATCH 6.6.y 2/2] spi: topcliff-pch: fix controller deregistration
Date: Fri, 15 May 2026 17:03:27 +0200	[thread overview]
Message-ID: <2026051520-veggie-tacky-ce51@gregkh> (raw)
In-Reply-To: <20260515113152.2965674-2-sashal@kernel.org>

On Fri, May 15, 2026 at 07:31:52AM -0400, Sasha Levin wrote:
> From: Johan Hovold <johan@kernel.org>
> 
> [ Upstream commit 5d6f477d6fc0767c57c5e1e6f55a1662820eef87 ]
> 
> Make sure to deregister the controller before disabling and releasing
> underlying resources like interrupts and DMA during driver unbind.
> 
> Fixes: e8b17b5b3f30 ("spi/topcliff: Add topcliff platform controller hub (PCH) spi bus driver")
> Cc: stable@vger.kernel.org	# 2.6.37
> Cc: Masayuki Ohtake <masa-korg@dsn.okisemi.com>
> Signed-off-by: Johan Hovold <johan@kernel.org>
> Link: https://patch.msgid.link/20260414134319.978196-8-johan@kernel.org
> Signed-off-by: Mark Brown <broonie@kernel.org>
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
>  drivers/spi/spi-topcliff-pch.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/spi/spi-topcliff-pch.c b/drivers/spi/spi-topcliff-pch.c
> index 271f3e7f834be..1a85b92e9eaa3 100644
> --- a/drivers/spi/spi-topcliff-pch.c
> +++ b/drivers/spi/spi-topcliff-pch.c
> @@ -1406,6 +1406,10 @@ static void pch_spi_pd_remove(struct platform_device *plat_dev)
>  	dev_dbg(&plat_dev->dev, "%s:[ch%d] irq=%d\n",
>  		__func__, plat_dev->id, board_dat->pdev->irq);
>  
> +	spi_controller_get(data->host);
> +
> +	spi_unregister_controller(data->host);
> +
>  	if (use_dma)
>  		pch_free_dma_buf(board_dat, data);
>  
> @@ -1433,7 +1437,8 @@ static void pch_spi_pd_remove(struct platform_device *plat_dev)
>  	}
>  
>  	pci_iounmap(board_dat->pdev, data->io_remap_addr);
> -	spi_unregister_controller(data->host);
> +
> +	spi_controller_put(data->host);
>  }
>  #ifdef CONFIG_PM
>  static int pch_spi_pd_suspend(struct platform_device *pd_dev,
> -- 
> 2.53.0
> 
> 

These two did not apply at all :(

      reply	other threads:[~2026-05-15 15:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-12 13:49 FAILED: patch "[PATCH] spi: topcliff-pch: fix controller deregistration" failed to apply to 6.6-stable tree gregkh
2026-05-15 11:31 ` [PATCH 6.6.y 1/2] spi: topcliff-pch: switch to use modern name Sasha Levin
2026-05-15 11:31   ` [PATCH 6.6.y 2/2] spi: topcliff-pch: fix controller deregistration Sasha Levin
2026-05-15 15:03     ` Greg KH [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2026051520-veggie-tacky-ce51@gregkh \
    --to=greg@kroah.com \
    --cc=broonie@kernel.org \
    --cc=johan@kernel.org \
    --cc=masa-korg@dsn.okisemi.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox