aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_34/UefiLessonsPkg/SimpleDriver/SimpleDriver.c
diff options
context:
space:
mode:
Diffstat (limited to 'Lesson_34/UefiLessonsPkg/SimpleDriver/SimpleDriver.c')
-rw-r--r--Lesson_34/UefiLessonsPkg/SimpleDriver/SimpleDriver.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/Lesson_34/UefiLessonsPkg/SimpleDriver/SimpleDriver.c b/Lesson_34/UefiLessonsPkg/SimpleDriver/SimpleDriver.c
deleted file mode 100644
index fd96d17..0000000
--- a/Lesson_34/UefiLessonsPkg/SimpleDriver/SimpleDriver.c
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <Library/UefiBootServicesTableLib.h>
-#include <Library/UefiLib.h>
-
-
-EFI_STATUS
-EFIAPI
-SimpleDriverUnload (
- EFI_HANDLE ImageHandle
- )
-{
- Print(L"Bye-bye from driver!\n");
-
- return EFI_SUCCESS;
-}
-
-EFI_STATUS
-EFIAPI
-SimpleDriverEntryPoint (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
-{
- Print(L"Hello from driver!\n");
-
- return EFI_SUCCESS;
-}