From: Greg KH <gregkh@linuxfoundation.org>
To: Madhur Kumar <madhurkumar004@gmail.com>
Cc: mirq-linux@rere.qmqm.pl, arnd@arndb.de, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] misc: cb710: Replace deprecated PCI functions
Date: Tue, 7 Oct 2025 14:43:52 +0200 [thread overview]
Message-ID: <2025100743-irk-democrat-2d4d@gregkh> (raw)
In-Reply-To: <20250919083214.1052842-1-madhurkumar004@gmail.com>
On Fri, Sep 19, 2025 at 02:02:14PM +0530, Madhur Kumar wrote:
> pcim_iomap_table() and pcim_iomap_regions() have been deprecated.
> Replace them with pcim_iomap_region().
>
> Signed-off-by: Madhur Kumar <madhurkumar004@gmail.com>
> ---
> drivers/misc/cb710/core.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/misc/cb710/core.c b/drivers/misc/cb710/core.c
> index 55b7ee0e8f93..033e9e6d37db 100644
> --- a/drivers/misc/cb710/core.c
> +++ b/drivers/misc/cb710/core.c
> @@ -223,13 +223,12 @@ static int cb710_probe(struct pci_dev *pdev,
> if (err)
> return err;
>
> - err = pcim_iomap_regions(pdev, 0x0001, KBUILD_MODNAME);
> - if (err)
> - return err;
>
> spin_lock_init(&chip->irq_lock);
> chip->pdev = pdev;
> - chip->iobase = pcim_iomap_table(pdev)[0];
> + chip->iobase = pcim_iomap_region(pdev, 0, KBUILD_MODNAME);
> + if(!chip->iobase)
> + return -ENOMEM;
>
> pci_set_drvdata(pdev, chip);
>
> --
> 2.51.0
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- Your patch contains warnings and/or errors noticed by the
scripts/checkpatch.pl tool.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
next prev parent reply other threads:[~2025-10-07 12:43 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-19 8:32 [PATCH] misc: cb710: Replace deprecated PCI functions Madhur Kumar
2025-09-20 16:25 ` Michał Mirosław
2025-10-04 21:53 ` Madhur Kumar
2025-10-05 6:24 ` Greg KH
2025-10-07 12:43 ` Greg KH [this message]
2025-10-13 13:28 ` [PATCH v2] " Madhur Kumar
2025-11-11 15:21 ` Philipp Stanner
2025-11-11 15:59 ` Madhur Kumar
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=2025100743-irk-democrat-2d4d@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=arnd@arndb.de \
--cc=linux-kernel@vger.kernel.org \
--cc=madhurkumar004@gmail.com \
--cc=mirq-linux@rere.qmqm.pl \
/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