summaryrefslogtreecommitdiffstats
path: root/lib/efi_loader/efi_disk.c
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2016-06-02 11:38:27 +0200
committerTom Rini <trini@konsulko.com>2016-06-06 13:39:16 -0400
commitedcef3ba1d2d5beb92fcd7df253e196e77ba174d (patch)
treef2ca61e10c1d34979f928dc7b20d0976236e800e /lib/efi_loader/efi_disk.c
parenta86aeaf228da739bce6bc40927949efc33672050 (diff)
downloadtalos-obmc-uboot-edcef3ba1d2d5beb92fcd7df253e196e77ba174d.tar.gz
talos-obmc-uboot-edcef3ba1d2d5beb92fcd7df253e196e77ba174d.zip
efi_loader: Move to normal debug infrastructure
We introduced special "DEBUG_EFI" defines when the efi loader support was new. After giving it a bit of thought, turns out we really didn't have to - the normal #define DEBUG infrastructure works well enough for efi loader as well. So this patch switches to the common debug() and #define DEBUG way of printing debug information. Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_loader/efi_disk.c')
-rw-r--r--lib/efi_loader/efi_disk.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/efi_loader/efi_disk.c b/lib/efi_loader/efi_disk.c
index f9ad6156b7..c434c92250 100644
--- a/lib/efi_loader/efi_disk.c
+++ b/lib/efi_loader/efi_disk.c
@@ -84,10 +84,8 @@ static efi_status_t EFIAPI efi_disk_rw_blocks(struct efi_block_io *this,
blocks = buffer_size / blksz;
lba += diskobj->offset;
-#ifdef DEBUG_EFI
- printf("EFI: %s:%d blocks=%x lba=%"PRIx64" blksz=%x dir=%d\n", __func__,
- __LINE__, blocks, lba, blksz, direction);
-#endif
+ debug("EFI: %s:%d blocks=%x lba=%"PRIx64" blksz=%x dir=%d\n", __func__,
+ __LINE__, blocks, lba, blksz, direction);
/* We only support full block access */
if (buffer_size & (blksz - 1))
@@ -101,9 +99,8 @@ static efi_status_t EFIAPI efi_disk_rw_blocks(struct efi_block_io *this,
/* We don't do interrupts, so check for timers cooperatively */
efi_timer_check();
-#ifdef DEBUG_EFI
- printf("EFI: %s:%d n=%lx blocks=%x\n", __func__, __LINE__, n, blocks);
-#endif
+ debug("EFI: %s:%d n=%lx blocks=%x\n", __func__, __LINE__, n, blocks);
+
if (n != blocks)
return EFI_EXIT(EFI_DEVICE_ERROR);
OpenPOWER on IntegriCloud