aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/ide-lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/ide-lib.c')
-rw-r--r--drivers/ide/ide-lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ide/ide-lib.c b/drivers/ide/ide-lib.c
index d7503c489e99..6b2e810cb9e0 100644
--- a/drivers/ide/ide-lib.c
+++ b/drivers/ide/ide-lib.c
@@ -479,7 +479,7 @@ static void ide_dump_opcode(ide_drive_t *drive)
479 printk("0x%02x\n", opcode); 479 printk("0x%02x\n", opcode);
480} 480}
481 481
482static u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48) 482u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48)
483{ 483{
484 u32 high, low; 484 u32 high, low;
485 485
@@ -492,6 +492,7 @@ static u64 ide_get_lba_addr(struct ide_taskfile *tf, int lba48)
492 492
493 return ((u64)high << 24) | low; 493 return ((u64)high << 24) | low;
494} 494}
495EXPORT_SYMBOL_GPL(ide_get_lba_addr);
495 496
496static void ide_dump_sector(ide_drive_t *drive) 497static void ide_dump_sector(ide_drive_t *drive)
497{ 498{