OvmfPkg/VirtioSerialDxe: Remove noisy debug print on supported() call

The UEFI driver model invokes the supported() method on every driver
every time a connection attempt is made on any handle, and so doing an
unconditional DEBUG() print inside this method produced a lot of noise.

So let's drop this DEBUG() call from the VirtioSerial driver's
Supported() method.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
Ard Biesheuvel 2023-06-27 13:14:06 +02:00 committed by mergify[bot]
parent 2f8b51d6af
commit ea7a3015a2
1 changed files with 0 additions and 2 deletions

View File

@ -510,8 +510,6 @@ VirtioSerialDriverBindingSupported (
Status = EFI_UNSUPPORTED;
}
DEBUG ((DEBUG_INFO, "%a:%d: subsystem %d -> %r\n", __func__, __LINE__, VirtIo->SubSystemDeviceId, Status));
//
// We needed VirtIo access only transitorily, to see whether we support the
// device or not.