Quellcode durchsuchen

[efi] Fix incorrect debug message level when device has no device path

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown vor 9 Jahren
Ursprung
Commit
608fb792eb
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      src/interface/efi/efi_driver.c

+ 2
- 2
src/interface/efi/efi_driver.c Datei anzeigen

@@ -261,8 +261,8 @@ efi_driver_start ( EFI_DRIVER_BINDING_PROTOCOL *driver __unused,
261 261
 					  &devpath.interface,
262 262
 					  efi_image_handle, device,
263 263
 					  EFI_OPEN_PROTOCOL_BY_DRIVER ) ) != 0){
264
-		DBGCP ( device, "EFIDRV %p %s has no device path\n",
265
-			device, efi_handle_devpath_text ( device ) );
264
+		DBGC ( device, "EFIDRV %p %s has no device path\n",
265
+		       device, efi_handle_devpath_text ( device ) );
266 266
 		goto err_no_device_path;
267 267
 	}
268 268
 	efidev->path = devpath.devpath;

Laden…
Abbrechen
Speichern