From a90735a7a44fc0c1fb43c0eaeecc855b856ebcef Mon Sep 17 00:00:00 2001 From: Tomasz Duszynski Date: Tue, 2 Nov 2021 19:41:33 +0100 Subject: [PATCH] raw/cnxk_bphy: add header includes Generally it is good practice to include all headers that provide APIs which are being used. This is especially true in situations where 3rd party apps include our public headers and assume that all should work out of the box. Including all headers explicitly helps to achieve that. Signed-off-by: Tomasz Duszynski Acked-by: Jerin Jacob --- drivers/raw/cnxk_bphy/rte_pmd_bphy.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/raw/cnxk_bphy/rte_pmd_bphy.h b/drivers/raw/cnxk_bphy/rte_pmd_bphy.h index 726ff412a2..cc2372f719 100644 --- a/drivers/raw/cnxk_bphy/rte_pmd_bphy.h +++ b/drivers/raw/cnxk_bphy/rte_pmd_bphy.h @@ -5,7 +5,11 @@ #ifndef _CNXK_BPHY_H_ #define _CNXK_BPHY_H_ +#include + +#include #include +#include #include #include -- 2.39.5