summaryrefslogtreecommitdiff
path: root/src/conf_mode/intel_qat.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-10-09 19:14:49 +0200
committerChristian Poessinger <christian@poessinger.com>2020-10-09 19:14:49 +0200
commitef76184ae3b220235467feda76678f75960396c5 (patch)
tree112644028b184226ad948817ea380f9b91619f83 /src/conf_mode/intel_qat.py
parentdab9ff51238d07a9c41ec3bb431b1b4d1003a550 (diff)
downloadvyos-1x-ef76184ae3b220235467feda76678f75960396c5.tar.gz
vyos-1x-ef76184ae3b220235467feda76678f75960396c5.zip
QAT: T2968: add support for Intel Atom C2000 processor
Diffstat (limited to 'src/conf_mode/intel_qat.py')
-rwxr-xr-xsrc/conf_mode/intel_qat.py2
1 files changed, 1 insertions, 1 deletions
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')