diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2016-07-25 12:47:19 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2016-07-25 12:51:24 +0100 |
commit | 8b0dd38681d60522e47561d0bcbeb1827eb5688c (patch) | |
tree | 8e7e7a2c5786fd79b820a741937c7aea9578ad44 /tools/intel_audio_dump.c | |
parent | 38f84e30e699451cac6c7b45cd603e67b1287f15 (diff) |
intel_chipset: Fixup HAS_PCH_SPLIT() to exclude Atoms
The Atoms do not have the PCH split, exclude them from HAS_PCH_SPLIT().
At the time, I was planning to add the feature flag and make
intel_pch_type() useful, but for now take the simple option of expanding
th predicate.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tools/intel_audio_dump.c')
-rw-r--r-- | tools/intel_audio_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/intel_audio_dump.c b/tools/intel_audio_dump.c index aacd52f4..6d49756f 100644 --- a/tools/intel_audio_dump.c +++ b/tools/intel_audio_dump.c @@ -2479,6 +2479,8 @@ int main(int argc, char **argv) printf("%s audio registers:\n\n", intel_device_info(devid)->codename); if (IS_VALLEYVIEW(devid)) { dump_ironlake(); + } else if (IS_CHERRYVIEW(devid)) { + dump_braswell(); } else if (IS_GEN9(devid) || IS_BROADWELL(devid) || IS_HASWELL(devid)) { dump_hsw_plus(); @@ -2490,8 +2492,6 @@ int main(int argc, char **argv) dump_ironlake(); } else if (IS_G4X(devid)) { dump_eaglelake(); - } else if (IS_CHERRYVIEW(devid)) { - dump_braswell(); } return 0; |