Update IDPF VF device id to 145C removing the support for legacy AVF of 0x1889.
In accordance to DCR-3788 added device ID for S-IOV device. Signed-off-by: Soumyadeep Hore <soumyadeep.h...@intel.com> --- drivers/common/idpf/base/idpf_devids.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/common/idpf/base/idpf_devids.h b/drivers/common/idpf/base/idpf_devids.h index c47762d5b7..acd235c540 100644 --- a/drivers/common/idpf/base/idpf_devids.h +++ b/drivers/common/idpf/base/idpf_devids.h @@ -1,18 +1,20 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(c) 2001-2023 Intel Corporation + * Copyright(c) 2001-2024 Intel Corporation */ #ifndef _IDPF_DEVIDS_H_ #define _IDPF_DEVIDS_H_ +#ifndef LINUX_SUPPORT /* Vendor ID */ #define IDPF_INTEL_VENDOR_ID 0x8086 +#endif /* LINUX_SUPPORT */ /* Device IDs */ #define IDPF_DEV_ID_PF 0x1452 -#define IDPF_DEV_ID_VF 0x1889 - - - +#define IDPF_DEV_ID_VF 0x145C +#ifdef SIOV_SUPPORT +#define IDPF_DEV_ID_VF_SIOV 0x0DD5 +#endif /* SIOV_SUPPORT */ #endif /* _IDPF_DEVIDS_H_ */ -- 2.43.0