Skip to content

Commit 415072a

Browse files
committed
powerpc/pseries: Honor the generic "no_64bit_msi" flag
Instead of the arch specific quirk which we are deprecating Signed-off-by: Benjamin Herrenschmidt <[email protected]> CC: <[email protected]>
1 parent 3607438 commit 415072a

File tree

1 file changed

+1
-1
lines changed
  • arch/powerpc/platforms/pseries

1 file changed

+1
-1
lines changed

arch/powerpc/platforms/pseries/msi.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ static int rtas_setup_msi_irqs(struct pci_dev *pdev, int nvec_in, int type)
420420
*/
421421
again:
422422
if (type == PCI_CAP_ID_MSI) {
423-
if (pdn->force_32bit_msi) {
423+
if (pdev->no_64bit_msi) {
424424
rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, nvec);
425425
if (rc < 0) {
426426
/*

0 commit comments

Comments
 (0)