Use %*ph format to print small buffer as hex string. Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> --- drivers/ide/ide-acpi.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/ide/ide-acpi.c b/drivers/ide/ide-acpi.c index 05e18d658141..9a4ec281b985 100644 --- a/drivers/ide/ide-acpi.c +++ b/drivers/ide/ide-acpi.c @@ -320,10 +320,7 @@ static int do_drive_set_taskfiles(ide_drive_t *drive, u8 *gtf = (u8 *)(gtf_address + ix * REGS_PER_GTF); struct ide_cmd cmd; - DEBPRINT("(0x1f1-1f7): " - "hex: %02x %02x %02x %02x %02x %02x %02x\n", - gtf[0], gtf[1], gtf[2], - gtf[3], gtf[4], gtf[5], gtf[6]); + DEBPRINT("(0x1f1-1f7): hex: %7ph\n", gtf); if (!ide_acpigtf) { DEBPRINT("_GTF execution disabled\n"); -- 2.27.0