aboutsummaryrefslogtreecommitdiffstats
path: root/Lesson_31
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2021-07-06 00:06:26 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2021-07-06 00:06:26 +0300
commit8280cf0a39091890f029efa1b748520312698353 (patch)
tree0bdca7379d4fd0c8135bea029a157a809f8adaaa /Lesson_31
parentb4769c1486957f5c6edb6cc3396ce95a3f4ac051 (diff)
downloadUEFI-Lessons-8280cf0a39091890f029efa1b748520312698353.tar.gz
UEFI-Lessons-8280cf0a39091890f029efa1b748520312698353.tar.bz2
UEFI-Lessons-8280cf0a39091890f029efa1b748520312698353.zip
Fix typo in lesson 31 readme.md
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lesson_31')
-rw-r--r--Lesson_31/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lesson_31/README.md b/Lesson_31/README.md
index af8f5ac..fdc22de 100644
--- a/Lesson_31/README.md
+++ b/Lesson_31/README.md
@@ -1,6 +1,6 @@
In this lesson we would modify our `ListPCI` utility, so it would show us information about PCI Vendor and Device. Even `pci` command in UEFI shell doesn't show this information. It only shows us information about PCI class/subclass code. So our utility can be really usefull. Just in case you can check out sources for the `pci` command here:
--https://github.com/tianocore/edk2/blob/master/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
--https://github.com/tianocore/edk2/blob/master/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.h
+- https://github.com/tianocore/edk2/blob/master/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
+- https://github.com/tianocore/edk2/blob/master/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.h
This lesson was inspired by `ShowPCIx` application by fpmurphy https://github.com/fpmurphy/UEFI-Utilities-2019/tree/master/MyApps/ShowPCIx
Although this utility was taking too long time to do the parsing, so I've decided to rewrite it with a performance in mind.