On 10/1/2019 12:01 PM, Gagandeep Singh wrote: > ppfe (programmable packet forwarding engine) > is a network poll mode driver for NXP SoC > ls1012a. > > This patch introduces the framework of ppfe > driver with basic functions of initialisation > and teardown. > > Signed-off-by: Gagandeep Singh <g.si...@nxp.com> > Signed-off-by: Akhil Goyal <akhil.go...@nxp.com> > Acked-by: Nipun Gupta <nipun.gu...@nxp.com>
<...> > @@ -0,0 +1,28 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright 2019 NXP > +# > + > +include $(RTE_SDK)/mk/rte.vars.mk > + > +# > +# library name > +# > +LIB = librte_pmd_ppfe.a > + > +CFLAGS += -O3 $(WERROR_FLAGS) > +CFLAGS += -I$(RTE_SDK)/drivers/bus/dpaa/include/ This driver is a virtual driver and using something like 'cbus', btw, out of curiosity would you mind giving some detail what cbus is? In that case why need to include 'bus/dpaa' files? Is this PMD depends on 'dpaa' bus? Or should some 'bus/dpaa' files indeed be in the 'common/dpaax'?