mirror of https://github.com/acidanthera/audk.git
OvmfPkg/PlatformBootManagerLib: refer to virtio console subsys symbolically
"OvmfPkg/Include/IndustryStandard/Virtio095.h" defines the macro VIRTIO_SUBSYSTEM_CONSOLE with value 3; other locations in the tree already use it (such as ArmVirtPkg/PlatformBootManagerLib, OvmfPkg/VirtioSerialDxe). We should use it in OvmfPkg/PlatformBootManagerLib too, rather than the naked constant 3. Signed-off-by: Laszlo Ersek <lersek@redhat.com> Acked-by: Ard Biesheuvel <ardb@kernel.org>
This commit is contained in:
parent
4f4a2c3b07
commit
c95158e419
|
@ -1250,7 +1250,7 @@ DetectAndPreparePlatformVirtioDevicePath (
|
|||
DEBUG ((DEBUG_INFO, "%a:%d: id %d\n", __func__, __LINE__, VirtIo->SubSystemDeviceId));
|
||||
|
||||
switch (VirtIo->SubSystemDeviceId) {
|
||||
case 3:
|
||||
case VIRTIO_SUBSYSTEM_CONSOLE:
|
||||
PrepareVirtioSerialDevicePath (Handle);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue