LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Matt Turner <mattst88@gmail.com>
To: Pierre Chevalier <pierrechevalier83@gmail.com>
Cc: Richard Henderson <rth@twiddle.net>,
linux-alpha <linux-alpha@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] arch: alpha: kernel: remove deprecated call to pci_get_slot
Date: Wed, 20 May 2015 22:51:12 -0700 [thread overview]
Message-ID: <CAEdQ38EaE6f0MDQiKrdHu16aXAM5S0j+h2XA-gUkqjzdb1-DnA@mail.gmail.com> (raw)
In-Reply-To: <1423171075-23058-1-git-send-email-pierrechevalier83@gmail.com>
On Thu, Feb 5, 2015 at 1:17 PM, Pierre Chevalier
<pierrechevalier83@gmail.com> wrote:
> According to Documentation/PCI/pci.txt, pci_get_slot has been
> superseded by pci_get_domain_bus_and_slot.
>
> Signed-off-by: Pierre Chevalier <pierrechevalier83@gmail.com>
> ---
> arch/alpha/kernel/sys_miata.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/arch/alpha/kernel/sys_miata.c b/arch/alpha/kernel/sys_miata.c
> index d5b9776..7b98b40 100644
> --- a/arch/alpha/kernel/sys_miata.c
> +++ b/arch/alpha/kernel/sys_miata.c
> @@ -182,7 +182,8 @@ miata_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
>
> if((slot == 7) && (PCI_FUNC(dev->devfn) == 3)) {
> u8 irq=0;
> - struct pci_dev *pdev = pci_get_slot(dev->bus, dev->devfn & ~7);
> + struct pci_dev *pdev =
> + pci_get_domain_bus_and_slot(dev->bus, dev->devfn & ~7);
Given that pci_get_domain_bus_and_slot takes three arguments, I don't
think this compiles.
prev parent reply other threads:[~2015-05-21 5:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-05 21:17 Pierre Chevalier
2015-05-21 5:51 ` Matt Turner [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=CAEdQ38EaE6f0MDQiKrdHu16aXAM5S0j+h2XA-gUkqjzdb1-DnA@mail.gmail.com \
--to=mattst88@gmail.com \
--cc=linux-alpha@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pierrechevalier83@gmail.com \
--cc=rth@twiddle.net \
--subject='Re: [PATCH] arch: alpha: kernel: remove deprecated call to pci_get_slot' \
/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
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).