mirror of https://github.com/acidanthera/audk.git
21 lines
346 B
C
21 lines
346 B
C
|
/** @file
|
||
|
|
||
|
Macros and type definitions for LSI 53C895A SCSI devices.
|
||
|
|
||
|
Copyright (C) 2020, SUSE LLC.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#ifndef _LSI_SCSI_H_
|
||
|
#define _LSI_SCSI_H_
|
||
|
|
||
|
//
|
||
|
// Device ID
|
||
|
//
|
||
|
#define LSI_LOGIC_PCI_VENDOR_ID 0x1000
|
||
|
#define LSI_53C895A_PCI_DEVICE_ID 0x0012
|
||
|
|
||
|
#endif // _LSI_SCSI_H_
|