diff options
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide-lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ide/ide-lib.c b/drivers/ide/ide-lib.c index 15736d4ce9b4..d7503c489e99 100644 --- a/drivers/ide/ide-lib.c +++ b/drivers/ide/ide-lib.c | |||
@@ -509,7 +509,8 @@ static void ide_dump_sector(ide_drive_t *drive) | |||
509 | ide_tf_read(drive, &task); | 509 | ide_tf_read(drive, &task); |
510 | 510 | ||
511 | if (lba48 || (tf->device & ATA_LBA)) | 511 | if (lba48 || (tf->device & ATA_LBA)) |
512 | printk(", LBAsect=%llu", ide_get_lba_addr(tf, lba48)); | 512 | printk(", LBAsect=%llu", |
513 | (unsigned long long)ide_get_lba_addr(tf, lba48)); | ||
513 | else | 514 | else |
514 | printk(", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam, | 515 | printk(", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam, |
515 | tf->device & 0xf, tf->lbal); | 516 | tf->device & 0xf, tf->lbal); |