summaryrefslogtreecommitdiff
path: root/tools/intel_reg.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_reg.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_reg.c')
-rw-r--r--tools/intel_reg.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/intel_reg.c b/tools/intel_reg.c
index 84b3c9de..92be1ce7 100644
--- a/tools/intel_reg.c
+++ b/tools/intel_reg.c
@@ -669,6 +669,8 @@ static const char *get_codename(uint32_t devid)
return "broadwell";
else if (IS_SKYLAKE(devid))
return "skylake";
+ else if (IS_KABYLAKE(devid))
+ return "kabylake";
else if (IS_CHERRYVIEW(devid))
return "cherryview";
else if (IS_VALLEYVIEW(devid))