Commit e9b2b3e7 authored by Alexander Shishkin's avatar Alexander Shishkin

intel_th: pci: Enable bus mastering

The driver forgets to enable bus mastering for the PCI device.
Fix this.
Signed-off-by: default avatarAlexander Shishkin <alexander.shishkin@linux.intel.com>
parent 39fccd2f
......@@ -46,6 +46,8 @@ static int intel_th_pci_probe(struct pci_dev *pdev,
if (IS_ERR(th))
return PTR_ERR(th);
pci_set_master(pdev);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment