From ef76184ae3b220235467feda76678f75960396c5 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Fri, 9 Oct 2020 19:14:49 +0200 Subject: QAT: T2968: add support for Intel Atom C2000 processor --- src/conf_mode/intel_qat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conf_mode/intel_qat.py') diff --git a/src/conf_mode/intel_qat.py b/src/conf_mode/intel_qat.py index 86dbccaf0..ab98cbc03 100755 --- a/src/conf_mode/intel_qat.py +++ b/src/conf_mode/intel_qat.py @@ -67,7 +67,7 @@ def verify(qat): output, err = popen('lspci -nn', decode='utf-8') if not err: data = re.findall( - '(8086:19e2)|(8086:37c8)|(8086:0435)|(8086:6f54)', output) + '(8086:19e2)|(8086:37c8)|(8086:0435)|(8086:6f54)|(8086:1f18)', output) # If QAT devices found if not data: raise ConfigError('No QAT acceleration device found') -- cgit v1.2.3