mirror of https://gitee.com/openkylin/linux.git
intel_th: pci: Enable bus mastering
The driver forgets to enable bus mastering for the PCI device. Fix this. Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
This commit is contained in:
parent
39fccd2fc3
commit
e9b2b3e793
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue