mirror of https://github.com/acidanthera/audk.git
22 lines
400 B
C
22 lines
400 B
C
|
/** @file
|
||
|
|
||
|
VMware PVSCSI Device specific type and macro definitions.
|
||
|
|
||
|
Copyright (C) 2020, Oracle and/or its affiliates.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#ifndef __PVSCSI_H_
|
||
|
#define __PVSCSI_H_
|
||
|
|
||
|
//
|
||
|
// Device offsets and constants
|
||
|
//
|
||
|
|
||
|
#define PCI_VENDOR_ID_VMWARE (0x15ad)
|
||
|
#define PCI_DEVICE_ID_VMWARE_PVSCSI (0x07c0)
|
||
|
|
||
|
#endif // __PVSCSI_H_
|