From: Michael Brown Date: Mon, 12 Jun 2006 01:10:08 +0000 (+0000) Subject: Updated debug message to reflect change in data structure. X-Git-Tag: v0.9.3~1282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e49441535e98ac95397ef825aef7e1483bd50ed;p=thirdparty%2Fipxe.git Updated debug message to reflect change in data structure. --- diff --git a/src/drivers/block/ata.c b/src/drivers/block/ata.c index e0df3673f..555a5f6ec 100644 --- a/src/drivers/block/ata.c +++ b/src/drivers/block/ata.c @@ -43,8 +43,9 @@ block_to_ata ( struct block_device *blockdev ) { */ static inline __attribute__ (( always_inline )) int ata_command ( struct ata_device *ata, struct ata_command *command ) { - DBG ( "ATA cmd %02x dev %02x fl %02x LBA %llx count %04x\n", - command->cb.cmd_stat, command->cb.device, command->cb.flags, + DBG ( "ATA cmd %02x dev %02x LBA%s %llx count %04x\n", + command->cb.cmd_stat, command->cb.device, + ( command->cb.lba48 ? "48" : "" ), ( unsigned long long ) command->cb.lba.native, command->cb.count.native );