aboutsummaryrefslogtreecommitdiffstats
path: root/tools/dpdk-devbind.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dpdk-devbind.py')
-rwxr-xr-xtools/dpdk-devbind.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/dpdk-devbind.py b/tools/dpdk-devbind.py
index f1d374d6..fef59c41 100755
--- a/tools/dpdk-devbind.py
+++ b/tools/dpdk-devbind.py
@@ -328,6 +328,9 @@ def get_crypto_details():
# based on the basic info, get extended text details
for d in devices.keys():
+ if devices[d]["Class"][0:2] != CRYPTO_BASE_CLASS:
+ continue
+
# get additional info and add it to existing data
devices[d] = devices[d].copy()
devices[d].update(get_pci_device_details(d).items())