From 8b0dd38681d60522e47561d0bcbeb1827eb5688c Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 25 Jul 2016 12:47:19 +0100 Subject: 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 --- tools/intel_audio_dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/intel_audio_dump.c') 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; -- cgit v1.2.3