mirror of https://github.com/acidanthera/audk.git
27 lines
437 B
C
27 lines
437 B
C
|
/** @file
|
||
|
|
||
|
This driver produces Extended SCSI Pass Thru Protocol instances for
|
||
|
LSI Fusion MPT SCSI devices.
|
||
|
|
||
|
Copyright (C) 2020, Oracle and/or its affiliates.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#include <Uefi/UefiSpec.h>
|
||
|
|
||
|
//
|
||
|
// Entry Point
|
||
|
//
|
||
|
|
||
|
EFI_STATUS
|
||
|
EFIAPI
|
||
|
MptScsiEntryPoint (
|
||
|
IN EFI_HANDLE ImageHandle,
|
||
|
IN EFI_SYSTEM_TABLE *SystemTable
|
||
|
)
|
||
|
{
|
||
|
return EFI_UNSUPPORTED;
|
||
|
}
|