mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 00:46:17 +00:00
lib/intel_mmio: Fix the fixed fix (register access)
When I moved code around here: commit 57bc7631e161a7bdcf7f68e1a46049dcb49c2256 Author: Ben Widawsky <ben@bwidawsk.net> Date: Thu May 23 11:09:55 2013 -0700 lib/intel_mmio: Fix the fix I accidently dropped the intel_gen() for the PCI id. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=67289 Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
parent
e3e4db93db
commit
a85548910c
@ -191,8 +191,8 @@ intel_register_access_init(struct pci_device *pci_dev, int safe)
|
|||||||
if (mmio_data.inited)
|
if (mmio_data.inited)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
mmio_data.safe = (safe != 0 &&
|
||||||
mmio_data.safe = (safe != 0 && pci_dev->device_id >= 4) ? true : false;
|
intel_gen(pci_dev->device_id) >= 4) ? true : false;
|
||||||
mmio_data.i915_devid = pci_dev->device_id;
|
mmio_data.i915_devid = pci_dev->device_id;
|
||||||
if (mmio_data.safe)
|
if (mmio_data.safe)
|
||||||
mmio_data.map = intel_get_register_map(mmio_data.i915_devid);
|
mmio_data.map = intel_get_register_map(mmio_data.i915_devid);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user