diff options
author | maxd <[email protected]> | 2017-01-11 16:47:01 +0100 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2017-01-11 11:41:12 -0500 |
commit | 78db4231c66f169c6c1ee7d19f75cc39140364ea (patch) | |
tree | 9bc1b4e5e898732d2c9cbefe542c7fdfa8ef771f /libhb/ports.c | |
parent | 6dca3affae8d899f34b66a7a91729593cf0e2626 (diff) |
added support of Kaby Lake CPU recognition
Diffstat (limited to 'libhb/ports.c')
-rw-r--r-- | libhb/ports.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libhb/ports.c b/libhb/ports.c index 4a555fc56..afc5c59c9 100644 --- a/libhb/ports.c +++ b/libhb/ports.c @@ -274,7 +274,8 @@ const char* hb_get_cpu_platform_name() return "Intel microarchitecture Skylake"; case HB_CPU_PLATFORM_INTEL_CHT: return "Intel microarchitecture Airmont"; - + case HB_CPU_PLATFORM_INTEL_KBL: + return "Intel microarchitecture Kaby Lake"; default: return NULL; } @@ -361,6 +362,10 @@ static void init_cpu_info() case 0x5E: hb_cpu_info.platform = HB_CPU_PLATFORM_INTEL_SKL; break; + case 0x8E: + case 0x9E: + hb_cpu_info.platform = HB_CPU_PLATFORM_INTEL_KBL; + break; default: break; } |