diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-01 17:09:28 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-01 17:09:28 -0500 |
commit | 7b9f25b539c3fa3c7b8c82775488a0021d90220f (patch) | |
tree | 9107c2f7f1cfe256809546ccec7496b8c0e23d77 /include/linux | |
parent | 3bb4663bd82e6d536a4b46166b00e93d5072e656 (diff) |
ide: add ide_dump_identify() debug helper
* Add ide_dump_identify() debug helper for dumping raw identify data in
the hdparm friendly format (== the identify data can be extracted from
dmesg output and passed to hdparm --Istdin).
* Dump identify data in ide-probe.c::do_identify() if DEBUG is enabled.
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ide.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 7072c535f7cf..34542186fb15 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -1288,6 +1288,11 @@ extern struct bus_type ide_bus_type; | |||
1288 | #define ide_id_has_flush_cache_ext(id) \ | 1288 | #define ide_id_has_flush_cache_ext(id) \ |
1289 | (((id)->cfs_enable_2 & 0x2400) == 0x2400) | 1289 | (((id)->cfs_enable_2 & 0x2400) == 0x2400) |
1290 | 1290 | ||
1291 | static inline void ide_dump_identify(u8 *id) | ||
1292 | { | ||
1293 | print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 2, id, 512, 0); | ||
1294 | } | ||
1295 | |||
1291 | static inline int hwif_to_node(ide_hwif_t *hwif) | 1296 | static inline int hwif_to_node(ide_hwif_t *hwif) |
1292 | { | 1297 | { |
1293 | struct pci_dev *dev = hwif->pci_dev; | 1298 | struct pci_dev *dev = hwif->pci_dev; |