32c3e0b488
Clarify Intel copyright and update the date to 2020.
Fixes: 317862a4e4
("net/iavf: replace license text with SPDX tag")
Cc: stable@dpdk.org
Signed-off-by: Xiaoyun Li <xiaoyun.li@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
18 lines
400 B
C
18 lines
400 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2001-2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _IAVF_DEVIDS_H_
|
|
#define _IAVF_DEVIDS_H_
|
|
|
|
/* Vendor ID */
|
|
#define IAVF_INTEL_VENDOR_ID 0x8086
|
|
|
|
/* Device IDs for the VF driver */
|
|
#define IAVF_DEV_ID_VF 0x154C
|
|
#define IAVF_DEV_ID_VF_HV 0x1571
|
|
#define IAVF_DEV_ID_ADAPTIVE_VF 0x1889
|
|
#define IAVF_DEV_ID_X722_VF 0x37CD
|
|
|
|
#endif /* _IAVF_DEVIDS_H_ */
|