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:
Laszlo Ersek 2023-09-12 16:17:14 +02:00 committed by mergify[bot]
parent 4f4a2c3b07
commit c95158e419
1 changed files with 1 additions and 1 deletions

View File

@ -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: