From 7342e612052ae3ec875ae018548324d29abfa9c2 Mon Sep 17 00:00:00 2001 From: "Min Hu (Connor)" Date: Tue, 14 Jun 2022 17:33:19 +0800 Subject: [PATCH] dma/hisilicon: fix includes in header file Header files should be self contained. This patch fixed it. Fixes: 9e16317a38f9 ("dma/hisilicon: add probing") Cc: stable@dpdk.org Signed-off-by: Min Hu (Connor) Signed-off-by: Chengwen Feng --- drivers/dma/hisilicon/hisi_dmadev.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/dma/hisilicon/hisi_dmadev.h b/drivers/dma/hisilicon/hisi_dmadev.h index deb1357eea..5a17f9f69e 100644 --- a/drivers/dma/hisilicon/hisi_dmadev.h +++ b/drivers/dma/hisilicon/hisi_dmadev.h @@ -7,6 +7,8 @@ #include #include +#include +#include #define BIT(x) (1ul << (x)) #define BITS_PER_LONG (__SIZEOF_LONG__ * 8) -- 2.39.5