From 88192ce59f1113463a89b0c550d6013a36372771 Mon Sep 17 00:00:00 2001 From: Greg Tucker Date: Thu, 22 Sep 2016 17:38:29 -0700 Subject: [PATCH] igzip: Add missing slver for isal_create_hufftables_subset Change-Id: I331c3edacaeb4c3a86839d7f1e099e189aed8200 Signed-off-by: Greg Tucker --- igzip/huff_codes.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/igzip/huff_codes.c b/igzip/huff_codes.c index 148cc6f..8ae4b63 100644 --- a/igzip/huff_codes.c +++ b/igzip/huff_codes.c @@ -55,6 +55,9 @@ struct slver isal_update_histogram_slver = { 0x0085, 0x01, 0x00 }; struct slver isal_create_hufftables_slver_00010086; struct slver isal_create_hufftables_slver = { 0x0086, 0x01, 0x00 }; +struct slver isal_create_hufftables_subset_slver_00010087; +struct slver isal_create_hufftables_subset_slver = { 0x0087, 0x01, 0x00 }; + int heap_push(struct huff_tree element, struct histheap *heap) { uint16_t index;