diff options
author | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2014-04-04 13:24:53 -0300 |
---|---|---|
committer | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2014-04-04 13:33:13 -0300 |
commit | 574d62db398af45a8cb1d38fd77dd50bd645149b (patch) | |
tree | 2a11d799b97c37fa0f594012b15b43fd3c82dd94 | |
parent | 1fd9fc00127026b56dbd5cea323a63bdd4e69706 (diff) |
tools/intel_reg_dumper: use haswell_debug_regs on BDW too
Instead of using an older set of registers.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
-rw-r--r-- | tools/intel_reg_dumper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/intel_reg_dumper.c b/tools/intel_reg_dumper.c index 4d3d2c7f..4bc299c9 100644 --- a/tools/intel_reg_dumper.c +++ b/tools/intel_reg_dumper.c @@ -2959,7 +2959,7 @@ int main(int argc, char** argv) power_well = power_well_get(); - if (IS_HASWELL(devid)) { + if (IS_HASWELL(devid) || IS_BROADWELL(devid)) { intel_dump_regs(haswell_debug_regs); } else if (IS_GEN5(devid) || IS_GEN6(devid) || IS_IVYBRIDGE(devid)) { intel_dump_regs(ironlake_debug_regs); |