2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-26 19:29:04 +00:00

Fixed debug code

This commit is contained in:
Michael Brown 2006-05-21 16:04:41 +00:00
parent 9dfb9d84b4
commit 95956443e1

View File

@ -43,9 +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,
( unsigned long long ) command.cb.lba.native,
command.cb.count.native );
command->cb.cmd_stat, command->cb.device, command->cb.flags,
( unsigned long long ) command->cb.lba.native,
command->cb.count.native );
return ata->command ( ata, command );
}