tools/intel_reg_dumper: use haswell_debug_regs on BDW too
authorPaulo Zanoni <paulo.r.zanoni@intel.com>
Fri, 4 Apr 2014 16:24:53 +0000 (13:24 -0300)
committerPaulo Zanoni <paulo.r.zanoni@intel.com>
Fri, 4 Apr 2014 16:33:13 +0000 (13:33 -0300)
Instead of using an older set of registers.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
tools/intel_reg_dumper.c

index 4d3d2c7..4bc299c 100644 (file)
@@ -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);