diff options
-rw-r--r-- | drivers/misc/cxl/pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c index 6ac6b05f41a4..deef9c75e73a 100644 --- a/drivers/misc/cxl/pci.c +++ b/drivers/misc/cxl/pci.c | |||
@@ -1264,6 +1264,9 @@ static int cxl_configure_adapter(struct cxl *adapter, struct pci_dev *dev) | |||
1264 | if ((rc = adapter->native->sl_ops->adapter_regs_init(adapter, dev))) | 1264 | if ((rc = adapter->native->sl_ops->adapter_regs_init(adapter, dev))) |
1265 | goto err; | 1265 | goto err; |
1266 | 1266 | ||
1267 | /* Required for devices using CAPP DMA mode, harmless for others */ | ||
1268 | pci_set_master(dev); | ||
1269 | |||
1267 | if ((rc = pnv_phb_to_cxl_mode(dev, adapter->native->sl_ops->capi_mode))) | 1270 | if ((rc = pnv_phb_to_cxl_mode(dev, adapter->native->sl_ops->capi_mode))) |
1268 | goto err; | 1271 | goto err; |
1269 | 1272 | ||