diff options
author | Eugeni Dodonov <eugeni.dodonov@intel.com> | 2012-05-16 10:14:55 -0300 |
---|---|---|
committer | Eugeni Dodonov <eugeni.dodonov@intel.com> | 2012-05-16 10:14:55 -0300 |
commit | e6b264cce7799d822bc8a1b0e493cf5dee112f85 (patch) | |
tree | 74da070d15e670c15b588dd79f8fd62b2e840709 /tools | |
parent | 544e35785198045d76d8f11ee414c7f1661ffc77 (diff) |
intel_gpu_top: allow to work on Gen7
Somehow nobody noticed this before, but we were missing blt and bsd6
initialization on Gen7.
Reported-by: Philippe Lecluse <philippe.lecluse@intel.com>
Signed-off-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/intel_gpu_top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/intel_gpu_top.c b/tools/intel_gpu_top.c index e8f02d0e..e561865c 100644 --- a/tools/intel_gpu_top.c +++ b/tools/intel_gpu_top.c @@ -514,7 +514,7 @@ int main(int argc, char **argv) ring_init(&render_ring); if (IS_GEN4(devid) || IS_GEN5(devid)) ring_init(&bsd_ring); - if (IS_GEN6(devid)) { + if (IS_GEN6(devid) || IS_GEN7(devid)) { ring_init(&bsd6_ring); ring_init(&blt_ring); } |