Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9b2b3e7 authored by Alexander Shishkin's avatar Alexander Shishkin
Browse files

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
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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;
}