diff options
author | Kristian Høgsberg <krh@redhat.com> | 2007-02-16 17:34:43 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 22:03:00 +0100 |
commit | 500be7251a4af1a87aa48285a23a741f74a97a89 (patch) | |
tree | e2b90d69ed362f409bc83eb9ecc1fe7176a9ab1a /drivers/firewire | |
parent | b82956685aab4a9d333714300eb8a86fed6c9ab3 (diff) |
firewire: Log OHCI chipset version in PCI probe.
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/fw-ohci.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/fw-ohci.c index c0ab868b9fe4..d601ec7ff4d5 100644 --- a/drivers/firewire/fw-ohci.c +++ b/drivers/firewire/fw-ohci.c @@ -1672,7 +1672,7 @@ static int __devinit pci_probe(struct pci_dev *dev, const struct pci_device_id *ent) { struct fw_ohci *ohci; - u32 bus_options, max_receive, link_speed; + u32 bus_options, max_receive, link_speed, version; u64 guid; int error_code; size_t size; @@ -1799,7 +1799,9 @@ pci_probe(struct pci_dev *dev, const struct pci_device_id *ent) if (error_code < 0) return cleanup(ohci, CLEANUP_SELF_ID, error_code); - fw_notify("Added fw-ohci device %s.\n", dev->dev.bus_id); + version = reg_read(ohci, OHCI1394_Version); + fw_notify("Added fw-ohci device %s, OHCI version %x.%x\n", + dev->dev.bus_id, (version >> 16) & 0xff, version & 0xff); return 0; } |