diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-10-07 16:12:55 +1100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2014-12-06 15:18:13 +0100 |
commit | 61a926913b3d5ea35d69d4f0a9c5c0e068abe72c (patch) | |
tree | dc196363165d81061a134d28b7e70beb26717a21 | |
parent | 9a9c085844ed2582ae5cf5e5c11166adedc0a491 (diff) | |
download | lwn-61a926913b3d5ea35d69d4f0a9c5c0e068abe72c.tar.gz lwn-61a926913b3d5ea35d69d4f0a9c5c0e068abe72c.zip |
powerpc/pseries: Honor the generic "no_64bit_msi" flag
commit 415072a041bf50dbd6d56934ffc0cbbe14c97be8 upstream.
Instead of the arch specific quirk which we are deprecating
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | arch/powerpc/platforms/pseries/msi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/msi.c b/arch/powerpc/platforms/pseries/msi.c index 6d2f0abce6fa..3b350fb91285 100644 --- a/arch/powerpc/platforms/pseries/msi.c +++ b/arch/powerpc/platforms/pseries/msi.c @@ -426,7 +426,7 @@ static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type) */ again: if (type == PCI_CAP_ID_MSI) { - if (pdn->force_32bit_msi) { + if (pdev->no_64bit_msi) { rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec); if (rc < 0) { /* |