aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firewire/fw-ohci.c
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2007-02-16 17:34:43 -0500
committerStefan Richter <stefanr@s5r6.in-berlin.de>2007-03-09 16:03:00 -0500
commit500be7251a4af1a87aa48285a23a741f74a97a89 (patch)
treee2b90d69ed362f409bc83eb9ecc1fe7176a9ab1a /drivers/firewire/fw-ohci.c
parentb82956685aab4a9d333714300eb8a86fed6c9ab3 (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/fw-ohci.c')
-rw-r--r--drivers/firewire/fw-ohci.c6
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
1672pci_probe(struct pci_dev *dev, const struct pci_device_id *ent) 1672pci_probe(struct pci_dev *dev, const struct pci_device_id *ent)
1673{ 1673{
1674 struct fw_ohci *ohci; 1674 struct fw_ohci *ohci;
1675 u32 bus_options, max_receive, link_speed; 1675 u32 bus_options, max_receive, link_speed, version;
1676 u64 guid; 1676 u64 guid;
1677 int error_code; 1677 int error_code;
1678 size_t size; 1678 size_t size;
@@ -1799,7 +1799,9 @@ pci_probe(struct pci_dev *dev, const struct pci_device_id *ent)
1799 if (error_code < 0) 1799 if (error_code < 0)
1800 return cleanup(ohci, CLEANUP_SELF_ID, error_code); 1800 return cleanup(ohci, CLEANUP_SELF_ID, error_code);
1801 1801
1802 fw_notify("Added fw-ohci device %s.\n", dev->dev.bus_id); 1802 version = reg_read(ohci, OHCI1394_Version);
1803 fw_notify("Added fw-ohci device %s, OHCI version %x.%x\n",
1804 dev->dev.bus_id, (version >> 16) & 0xff, version & 0xff);
1803 1805
1804 return 0; 1806 return 0;
1805} 1807}