> -----Original Message----- > From: [email protected] <[email protected]> > Sent: Wednesday, July 3, 2019 3:34 PM > To: Jerin Jacob Kollanukkaran <[email protected]>; Pavan Nikhilesh > Bhagavatula <[email protected]> > Cc: [email protected] > Subject: [dpdk-dev] [PATCH v3 1/6] event/octeontx2: add event eth Rx > adapter support > > From: Pavan Nikhilesh <[email protected]> > > Add event eth Rx adapter capabilities, queue add and delete functions. > > Signed-off-by: Pavan Nikhilesh <[email protected]> > Signed-off-by: Jerin Jacob <[email protected]> > --- > drivers/event/octeontx2/Makefile | 4 +- > drivers/event/octeontx2/meson.build | 2 +- > drivers/event/octeontx2/otx2_evdev.c | 4 + > drivers/event/octeontx2/otx2_evdev.h | 15 ++ > drivers/event/octeontx2/otx2_evdev_adptr.c | 254 > +++++++++++++++++++++ > 5 files changed, 276 insertions(+), 3 deletions(-) > > diff --git a/drivers/event/octeontx2/Makefile > b/drivers/event/octeontx2/Makefile > index d01da6b11..20d7c2fee 100644 > --- a/drivers/event/octeontx2/Makefile > +++ b/drivers/event/octeontx2/Makefile > @@ -40,7 +40,7 @@ SRCS- > $(CONFIG_RTE_LIBRTE_PMD_OCTEONTX2_EVENTDEV) += > otx2_evdev_selftest.c > SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX2_EVENTDEV) += > otx2_evdev_irq.c > > LDLIBS += -lrte_eal -lrte_bus_pci -lrte_pci -lrte_kvargs -LDLIBS += - > lrte_mempool -lrte_eventdev -lrte_mbuf -LDLIBS += - > lrte_common_octeontx2 -lrte_mempool_octeontx2 > +LDLIBS += -lrte_mempool -lrte_eventdev -lrte_mbuf -lrte_ethdev LDLIBS > ++= -lrte_common_octeontx2 -lrte_mempool_octeontx2 - > lrte_pmd_octeontx2
Now there is no dependency with lrte_pmd_octeotx2. Please remove it.

