public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Philipp Stanner <pstanner@redhat.com>
Cc: "Damien Le Moal" <dlemoal@kernel.org>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>,
	"Jonathan Cameron" <Jonathan.Cameron@huawei.com>,
	"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	linux-pci@vger.kernel.org
Subject: Re: [PATCH v2 04/10] crypto: marvell - replace deprecated PCI functions
Date: Mon, 12 Aug 2024 18:57:23 +0300	[thread overview]
Message-ID: <Zrow42L9dYC6tSZr@smile.fi.intel.com> (raw)
In-Reply-To: <20240805080150.9739-6-pstanner@redhat.com>

(Reduced Cc list a lot)

On Mon, Aug 05, 2024 at 10:01:31AM +0200, Philipp Stanner wrote:
> pcim_iomap_table() and pcim_iomap_regions_request_all() have been
> deprecated by the PCI subsystem in commit e354bb84a4c1 ("PCI: Deprecate
> pcim_iomap_table(), pcim_iomap_regions_request_all()").
> 
> Replace these functions with their successors, pcim_iomap() and
> pcim_request_all_regions()

Missing period at the end.

...

> -	/* Map PF's configuration registers */
> -	err = pcim_iomap_regions_request_all(pdev, 1 << PCI_PF_REG_BAR_NUM,
> -					     OTX2_CPT_DRV_NAME);
> +	err = pcim_request_all_regions(pdev, OTX2_CPT_DRV_NAME);
>  	if (err) {
> -		dev_err(dev, "Couldn't get PCI resources 0x%x\n", err);
> +		dev_err(dev, "Couldn't request PCI resources 0x%x\n", err);
>  		goto clear_drvdata;
>  	}

I haven't looked at the implementation differences of those two, but would it
be really an equivalent change now?

Note, the resource may be requested, OR mapped, OR both. In accordance with the
naming above I assume that this is not equivalent change with potential
breakages.


> -	cptpf->reg_base = pcim_iomap_table(pdev)[PCI_PF_REG_BAR_NUM];
> +	/* Map PF's configuration registers */
> +	cptpf->reg_base = pcim_iomap(pdev, PCI_PF_REG_BAR_NUM, 0);
> +	if (!cptpf->reg_base) {
> +		err = -ENOMEM;
> +		dev_err(dev, "Couldn't ioremap PCI resource 0x%x\n", err);
> +		goto clear_drvdata;
> +	}

(Yes, I see this).

...

> --- a/drivers/crypto/marvell/octeontx2/otx2_cptvf_main.c
> +++ b/drivers/crypto/marvell/octeontx2/otx2_cptvf_main.c

Ditto. here.

-- 
With Best Regards,
Andy Shevchenko



  reply	other threads:[~2024-08-12 15:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-05  8:01 [PATCH v2 00/10] Remove pcim_iomap_regions_request_all() Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 01/10] PCI: Make pcim_request_all_regions() a public function Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 02/10] ata: ahci: Replace deprecated PCI functions Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 03/10] crypto: qat - replace " Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 04/10] crypto: marvell " Philipp Stanner
2024-08-12 15:57   ` Andy Shevchenko [this message]
2024-08-12 18:16     ` Philipp Stanner
2024-08-12 19:48       ` Andy Shevchenko
2024-08-05  8:01 ` [PATCH v2 05/10] intel_th: pci: Replace " Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 06/10] wifi: iwlwifi: replace " Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 07/10] ntb: idt: Replace " Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 08/10] serial: rp2: " Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 09/10] ALSA: korg1212: " Philipp Stanner
2024-08-05  8:01 ` [PATCH v2 10/10] PCI: Remove pcim_iomap_regions_request_all() Philipp Stanner

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=Zrow42L9dYC6tSZr@smile.fi.intel.com \
    --to=andriy.shevchenko@linux.intel.com \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=bhelgaas@google.com \
    --cc=dlemoal@kernel.org \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=pstanner@redhat.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /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