There is no reason to wrap the data structures inside the ifdef. Signed-off-by: Jonathan Toppins <jtopp...@redhat.com> --- drivers/net/ethernet/broadcom/bnxt/bnxt_tc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.h b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.h index 6c4c1ed279ef..6e771e9eed51 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.h +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.h @@ -10,8 +10,6 @@ #ifndef BNXT_TC_H #define BNXT_TC_H -#ifdef CONFIG_BNXT_FLOWER_OFFLOAD - /* Structs used for storing the filter/actions of the TC cmd. */ struct bnxt_tc_l2_key { @@ -133,6 +131,8 @@ struct bnxt_tc_flow_node { struct rcu_head rcu; }; +#if IS_ENABLED(CONFIG_BNXT_FLOWER_OFFLOAD) + int bnxt_tc_setup_flower(struct bnxt *bp, u16 src_fid, struct tc_cls_flower_offload *cls_flower); int bnxt_init_tc(struct bnxt *bp); -- 2.13.6