OvmfPkg/MptScsiDxe: Create empty driver
In preparation for implementing LSI Fusion MPT SCSI devices, create a basic scaffolding for a driver. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2390 Signed-off-by: Nikita Leshenko <nikita.leshchenko@oracle.com> Reviewed-by: Liran Alon <liran.alon@oracle.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200504210607.144434-2-nikita.leshchenko@oracle.com>
This commit is contained in:
committed by
mergify[bot]
parent
f159102a13
commit
feec20b28d
26
OvmfPkg/MptScsiDxe/MptScsi.c
Normal file
26
OvmfPkg/MptScsiDxe/MptScsi.c
Normal file
@@ -0,0 +1,26 @@
|
||||
/** @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;
|
||||
}
|
Reference in New Issue
Block a user