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:
Wei Zhao 2017-10-13 17:11:30 +08:00 committed by Thomas Monjalon
parent cf2fdf7263
commit 562251e007

View File

@ -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;
}