aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/ohci1394.c
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2005-11-07 06:31:42 -0500
committerJody McIntyre <scjody@modernduck.com>2005-11-07 06:31:42 -0500
commit7afa1467761f06bd9649efd66a4a6b3ff9f29a1f (patch)
treec5c4b00aa4bd5097335aaf8d3a044033588f6826 /drivers/ieee1394/ohci1394.c
parenta237f35fdd81d85037dccdacd2e94028227b59fb (diff)
Remove version strings from eth1394, ohci1394, sbp2.
Their version information is not trustworthy. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Jody McIntyre <scjody@modernduck.com>
Diffstat (limited to 'drivers/ieee1394/ohci1394.c')
-rw-r--r--drivers/ieee1394/ohci1394.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/ieee1394/ohci1394.c b/drivers/ieee1394/ohci1394.c
index dcb5776e5c44..8355068b0696 100644
--- a/drivers/ieee1394/ohci1394.c
+++ b/drivers/ieee1394/ohci1394.c
@@ -161,9 +161,6 @@ printk(level "%s: " fmt "\n" , OHCI1394_DRIVER_NAME , ## args)
161#define PRINT(level, fmt, args...) \ 161#define PRINT(level, fmt, args...) \
162printk(level "%s: fw-host%d: " fmt "\n" , OHCI1394_DRIVER_NAME, ohci->host->id , ## args) 162printk(level "%s: fw-host%d: " fmt "\n" , OHCI1394_DRIVER_NAME, ohci->host->id , ## args)
163 163
164static char version[] __devinitdata =
165 "$Rev: 1313 $ Ben Collins <bcollins@debian.org>";
166
167/* Module Parameters */ 164/* Module Parameters */
168static int phys_dma = 1; 165static int phys_dma = 1;
169module_param(phys_dma, int, 0644); 166module_param(phys_dma, int, 0644);
@@ -3215,15 +3212,10 @@ do { \
3215static int __devinit ohci1394_pci_probe(struct pci_dev *dev, 3212static int __devinit ohci1394_pci_probe(struct pci_dev *dev,
3216 const struct pci_device_id *ent) 3213 const struct pci_device_id *ent)
3217{ 3214{
3218 static int version_printed = 0;
3219
3220 struct hpsb_host *host; 3215 struct hpsb_host *host;
3221 struct ti_ohci *ohci; /* shortcut to currently handled device */ 3216 struct ti_ohci *ohci; /* shortcut to currently handled device */
3222 unsigned long ohci_base; 3217 unsigned long ohci_base;
3223 3218
3224 if (version_printed++ == 0)
3225 PRINT_G(KERN_INFO, "%s", version);
3226
3227 if (pci_enable_device(dev)) 3219 if (pci_enable_device(dev))
3228 FAIL(-ENXIO, "Failed to enable OHCI hardware"); 3220 FAIL(-ENXIO, "Failed to enable OHCI hardware");
3229 pci_set_master(dev); 3221 pci_set_master(dev);