mirror of https://github.com/F-Stack/f-stack.git
15 lines
282 B
C
15 lines
282 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright(c) 2013 - 2015 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef _IAVF_DEVIDS_H_
|
||
|
#define _IAVF_DEVIDS_H_
|
||
|
|
||
|
/* Vendor ID */
|
||
|
#define IAVF_INTEL_VENDOR_ID 0x8086
|
||
|
|
||
|
/* Device IDs */
|
||
|
#define IAVF_DEV_ID_ADAPTIVE_VF 0x1889
|
||
|
|
||
|
#endif /* _IAVF_DEVIDS_H_ */
|