During model population part number is different for 103xx and hence dpdk initialization fails. This fix resolves the same.
Signed-off-by: Rakesh Kudurumalla <rkuduruma...@marvell.com> --- drivers/common/cnxk/roc_model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_model.c b/drivers/common/cnxk/roc_model.c index a68baa65ea..c934a10509 100644 --- a/drivers/common/cnxk/roc_model.c +++ b/drivers/common/cnxk/roc_model.c @@ -19,7 +19,7 @@ struct roc_model *roc_model; #define PART_106xx 0xB9 #define PART_105xx 0xBA #define PART_105xxN 0xBC -#define PART_103xx 0xBE +#define PART_103xx 0xBD #define PART_98xx 0xB1 #define PART_96xx 0xB2 #define PART_95xx 0xB3 -- 2.25.1