summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/LsiScsiDxe/LsiScsi.c
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2020-07-17 14:11:20 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-07-17 20:51:55 +0000
commite94d04a01b5a631390f6abd0d1e8f62a347ca72c (patch)
tree18777316b5516c7e269e7cb3e768f1686d1b1e40 /OvmfPkg/LsiScsiDxe/LsiScsi.c
parent6ff53d2a13740e39dea110d6b3509c156c659586 (diff)
downloadedk2-e94d04a01b5a631390f6abd0d1e8f62a347ca72c.tar.gz
edk2-e94d04a01b5a631390f6abd0d1e8f62a347ca72c.tar.bz2
edk2-e94d04a01b5a631390f6abd0d1e8f62a347ca72c.zip
OvmfPkg/LsiScsiDxe: Create the empty driver
Create the driver with only a dummy LsiScsiEntryPoint() for the further implementation of the driver for LSI 53C895A SCSI controller. v2: Fix the mixed-case GUID string Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200717061130.8881-2-glin@suse.com>
Diffstat (limited to 'OvmfPkg/LsiScsiDxe/LsiScsi.c')
-rw-r--r--OvmfPkg/LsiScsiDxe/LsiScsi.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/OvmfPkg/LsiScsiDxe/LsiScsi.c b/OvmfPkg/LsiScsiDxe/LsiScsi.c
new file mode 100644
index 0000000000..9c90941688
--- /dev/null
+++ b/OvmfPkg/LsiScsiDxe/LsiScsi.c
@@ -0,0 +1,25 @@
+/** @file
+
+ This driver produces Extended SCSI Pass Thru Protocol instances for
+ LSI 53C895A SCSI devices.
+
+ Copyright (C) 2020, SUSE LLC.
+
+ SPDX-License-Identifier: BSD-2-Clause-Patent
+
+**/
+
+#include <Uefi/UefiSpec.h>
+
+//
+// Entry point of this driver
+//
+EFI_STATUS
+EFIAPI
+LsiScsiEntryPoint (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ )
+{
+ return EFI_UNSUPPORTED;
+}