]> Pileus Git - ~andy/linux/blobdiff - arch/powerpc/platforms/pseries/iommu.c
Merge tag 'v3.5-rc6' into irqdomain/next
[~andy/linux] / arch / powerpc / platforms / pseries / iommu.c
index aab5fbc924e6774763007190d996cf1fb77a86f3..6b58a395dff67f2cf29aa3c2a3bef33b1ba93142 100644 (file)
@@ -106,7 +106,7 @@ static int tce_build_pSeries(struct iommu_table *tbl, long index,
                tcep++;
        }
 
-       if (tbl->it_type == TCE_PCI_SWINV_CREATE)
+       if (tbl->it_type & TCE_PCI_SWINV_CREATE)
                tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
        return 0;
 }
@@ -121,7 +121,7 @@ static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages)
        while (npages--)
                *(tcep++) = 0;
 
-       if (tbl->it_type == TCE_PCI_SWINV_FREE)
+       if (tbl->it_type & TCE_PCI_SWINV_FREE)
                tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
 }