Re: [dpdk-dev] [PATCH 01/10] bus/fslmc: fix global variable multiple definitions

2019-09-10 Thread Sachin Saxena
Acked-by: Sachin Saxena > -Original Message- > From: Ferruh Yigit > Sent: Thursday, September 5, 2019 8:23 PM > To: Hemant Agrawal ; Sachin Saxena > > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: [PATCH 01/10] bus/fslmc: fix global variable multiple definitions > > 'qman_version' globa

[dpdk-dev] [PATCH 01/10] bus/fslmc: fix global variable multiple definitions

2019-09-05 Thread Ferruh Yigit
'qman_version' global variable is defined in a header file which was causing multiple definitions of the variable, fixed it by moving it to the .c file. Issue has been detected by '-fno-common' gcc flag. Fixes: 293c0ca94c36 ("bus/fslmc: support memory backed portals with QBMAN 5.0") Cc: sta...@dp