diff options
| author | Heinrich Schuchardt <[email protected]> | 2025-01-16 20:26:59 +0100 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-01-26 11:06:56 +0100 |
| commit | e9c34fab18a9a0022b36729afd8e262e062764e2 (patch) | |
| tree | 33d9a08a54b42bdd5d7ffa81cf00793331f09522 /lib/efi_driver | |
| parent | 01b35b3e38bb5baa476a33e75b88346e820e4ba2 (diff) | |
efi_loader: use LOGC_EFI consistently
The log category should be LOGC_EFI all over the EFI sub-system.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'lib/efi_driver')
| -rw-r--r-- | lib/efi_driver/efi_block_device.c | 2 | ||||
| -rw-r--r-- | lib/efi_driver/efi_uclass.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c index 19a5ee24794..d3c668dc183 100644 --- a/lib/efi_driver/efi_block_device.c +++ b/lib/efi_driver/efi_block_device.c @@ -28,6 +28,8 @@ * iPXE uses the simple file protocol to load Grub or the Linux Kernel. */ +#define LOG_CATEGORY LOGC_EFI + #include <blk.h> #include <dm.h> #include <efi_driver.h> diff --git a/lib/efi_driver/efi_uclass.c b/lib/efi_driver/efi_uclass.c index e1e28df20b2..495be53cb77 100644 --- a/lib/efi_driver/efi_uclass.c +++ b/lib/efi_driver/efi_uclass.c @@ -17,6 +17,8 @@ * controllers. */ +#define LOG_CATEGORY LOGC_EFI + #include <dm.h> #include <efi_driver.h> #include <log.h> |
