octeontx2-af: Don't treat lack of CGX interfaces as error
Don't treat lack of CGX LMACs on the system as a error. Instead ignore it so that LBK VFs are created and can be used. Signed-off-by: Sunil Goutham <sgoutham@marvell.com> Signed-off-by: Hariprasad Kelam <hkelam@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5266733c79
commit
f027fd51ed
|
@ -345,7 +345,7 @@ int rvu_cgx_init(struct rvu *rvu)
|
|||
rvu->cgx_cnt_max = cgx_get_cgxcnt_max();
|
||||
if (!rvu->cgx_cnt_max) {
|
||||
dev_info(rvu->dev, "No CGX devices found!\n");
|
||||
return -ENODEV;
|
||||
return 0;
|
||||
}
|
||||
|
||||
rvu->cgx_idmap = devm_kzalloc(rvu->dev, rvu->cgx_cnt_max *
|
||||
|
|
Loading…
Reference in New Issue