From 62979fd10497bcdad5579bdc8ad9c088d729ddd2 Mon Sep 17 00:00:00 2001 From: Gian-Carlo Pascutto Date: Mon, 10 Apr 2017 19:07:52 +0200 Subject: [PATCH] Fix dynamic detection for ZEN CPUs. --- driver/others/dynamic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/others/dynamic.c b/driver/others/dynamic.c index 54b18f245..ad7c0dfc2 100644 --- a/driver/others/dynamic.c +++ b/driver/others/dynamic.c @@ -392,7 +392,7 @@ static gotoblas_t *get_coretype(void){ } } - } else if (family == 8) { + } else if (exfamily == 8) { if (model == 1) { if(support_avx()) return &gotoblas_ZEN;