summaryrefslogtreecommitdiff
path: root/tools/intel_audio_dump.c
diff options
context:
space:
mode:
authorRodrigo Vivi <rodrigo.vivi@intel.com>2016-04-25 14:21:22 -0700
committerRodrigo Vivi <rodrigo.vivi@intel.com>2016-05-02 16:48:10 -0700
commite279954f1eb2c5cf9234ebbc3c1de201013ca422 (patch)
treeae386e797732590c0e187b9a441e3d0c65eaf4c8 /tools/intel_audio_dump.c
parentd9025d3298d8cb647b754e7f5d5e95e3dca67244 (diff)
tools: Add missing Kabylake codename strings.
No functional change and no change in the current format. Just introducing the missing Kabylake name strings. v2: Duh! forgot the ")"... Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'tools/intel_audio_dump.c')
-rw-r--r--tools/intel_audio_dump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/intel_audio_dump.c b/tools/intel_audio_dump.c
index 8c24230d..aec4177c 100644
--- a/tools/intel_audio_dump.c
+++ b/tools/intel_audio_dump.c
@@ -2483,8 +2483,9 @@ int main(int argc, char **argv)
|| IS_BROADWELL(devid) || IS_HASWELL(devid)) {
printf("%s audio registers:\n\n",
IS_BROXTON(devid) ? "Broxton" :
+ (IS_KABYLAKE(devid) ? "Kabylake" :
(IS_SKYLAKE(devid) ? "Skylake" :
- (IS_BROADWELL(devid) ? "Broadwell" : "Haswell")));
+ (IS_BROADWELL(devid) ? "Broadwell" : "Haswell"))));
dump_hsw_plus();
} else if (IS_GEN6(devid) || IS_GEN7(devid)
|| getenv("HAS_PCH_SPLIT")) {