net/i40e: fix build on FreeBSD
ENODATA can not be build in FreeBSD. Fixes: 7cbecc2f7424b ("net/i40e: support queue region set and flush") Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
This commit is contained in:
parent
cf2fdf7263
commit
562251e007
@ -2610,7 +2610,7 @@ i40e_queue_region_set_flowtype(struct i40e_pf *pf,
|
||||
|
||||
if (i == info->queue_region_number) {
|
||||
PMD_DRV_LOG(ERR, "that region id has not been set before");
|
||||
ret = -ENODATA;
|
||||
ret = -EINVAL;
|
||||
return ret;
|
||||
}
|
||||
region_index = i;
|
||||
@ -2726,7 +2726,7 @@ i40e_queue_region_set_user_priority(struct i40e_pf *pf,
|
||||
|
||||
if (i == info->queue_region_number) {
|
||||
PMD_DRV_LOG(ERR, "that region id has not been set before");
|
||||
ret = -ENODATA;
|
||||
ret = -EINVAL;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user