Messages in this thread Patch in this message |  | | From | Alexander Shishkin <> | Subject | [GIT PULL 03/15] intel_th: pci: Enable bus mastering | Date | Fri, 25 Aug 2017 19:15:54 +0300 |
| |
The driver forgets to enable bus mastering for the PCI device. Fix this.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> --- drivers/hwtracing/intel_th/pci.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/drivers/hwtracing/intel_th/pci.c b/drivers/hwtracing/intel_th/pci.c index 590cf90dd2..aac7d66d6a 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c @@ -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; } -- 2.14.1
|  |