aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ide.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r--include/linux/ide.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 27829c13bef7..87b5b5d39539 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -1382,19 +1382,6 @@ const char *ide_xfer_verbose(u8 mode);
1382extern void ide_toggle_bounce(ide_drive_t *drive, int on); 1382extern void ide_toggle_bounce(ide_drive_t *drive, int on);
1383extern int ide_set_xfer_rate(ide_drive_t *drive, u8 rate); 1383extern int ide_set_xfer_rate(ide_drive_t *drive, u8 rate);
1384 1384
1385static inline int ide_dev_is_sata(u16 *id)
1386{
1387 /*
1388 * See if word 93 is 0 AND drive is at least ATA-5 compatible
1389 * verifying that word 80 by casting it to a signed type --
1390 * this trick allows us to filter out the reserved values of
1391 * 0x0000 and 0xffff along with the earlier ATA revisions...
1392 */
1393 if (id[ATA_ID_HW_CONFIG] == 0 && (short)id[ATA_ID_MAJOR_VER] >= 0x0020)
1394 return 1;
1395 return 0;
1396}
1397
1398u64 ide_get_lba_addr(struct ide_taskfile *, int); 1385u64 ide_get_lba_addr(struct ide_taskfile *, int);
1399u8 ide_dump_status(ide_drive_t *, const char *, u8); 1386u8 ide_dump_status(ide_drive_t *, const char *, u8);
1400 1387