56 lines
1.3 KiB
Diff
56 lines
1.3 KiB
Diff
From 50c8227aa41910090035c64b3a76035cab9089fa Mon Sep 17 00:00:00 2001
|
|
From: Qi Tao <taoqi10@huawei.com>
|
|
Date: Fri, 1 Nov 2024 16:17:59 +0800
|
|
Subject: [PATCH 37/39] uadk: fix for hashagg include files
|
|
|
|
A compilation error occurred because the wd_util.h
|
|
is not an externally visible header file, so use
|
|
wd.h and wd_alg_common.h here.
|
|
|
|
Signed-off-by: Qi Tao <taoqi10@huawei.com>
|
|
---
|
|
include/drv/wd_agg_drv.h | 1 +
|
|
include/wd_agg.h | 1 -
|
|
include/wd_dae.h | 1 +
|
|
3 files changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/include/drv/wd_agg_drv.h b/include/drv/wd_agg_drv.h
|
|
index cf99a70..3d26eeb 100644
|
|
--- a/include/drv/wd_agg_drv.h
|
|
+++ b/include/drv/wd_agg_drv.h
|
|
@@ -8,6 +8,7 @@
|
|
|
|
#include <asm/types.h>
|
|
#include "wd_agg.h"
|
|
+#include "wd_util.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
diff --git a/include/wd_agg.h b/include/wd_agg.h
|
|
index e37023b..aac3d40 100644
|
|
--- a/include/wd_agg.h
|
|
+++ b/include/wd_agg.h
|
|
@@ -8,7 +8,6 @@
|
|
|
|
#include <dlfcn.h>
|
|
#include <asm/types.h>
|
|
-#include "wd_util.h"
|
|
#include "wd_dae.h"
|
|
|
|
#ifdef __cplusplus
|
|
diff --git a/include/wd_dae.h b/include/wd_dae.h
|
|
index 5f22d90..aa9f966 100644
|
|
--- a/include/wd_dae.h
|
|
+++ b/include/wd_dae.h
|
|
@@ -9,6 +9,7 @@
|
|
#include <dlfcn.h>
|
|
#include <stdbool.h>
|
|
#include <asm/types.h>
|
|
+#include "wd_alg_common.h"
|
|
#include "wd.h"
|
|
|
|
#ifdef __cplusplus
|
|
--
|
|
2.25.1
|
|
|