Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134965
b: refs/heads/master
c: 07c8d2a
h: refs/heads/master
i:
  134963: e55b585
v: v3
  • Loading branch information
Guo-Fu Tseng authored and David S. Miller committed Mar 2, 2009
1 parent 56596a3 commit c2d3ca3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fc1f209514691af9167e462880e858efc8b22d83
refs/heads/master: 07c8d2aad7db8c649a49a22f713f83e6f24b8edd
8 changes: 6 additions & 2 deletions trunk/drivers/net/jme.c
Original file line number Diff line number Diff line change
Expand Up @@ -2856,7 +2856,11 @@ jme_init_one(struct pci_dev *pdev,
goto err_out_free_shadow;
}

msg_probe(jme, "JMC250 gigabit%s ver:%x rev:%x macaddr:%pM\n",
msg_probe(jme, "%s%s ver:%x rev:%x macaddr:%pM\n",
(jme->pdev->device == PCI_DEVICE_ID_JMICRON_JMC250) ?
"JMC250 Gigabit Ethernet" :
(jme->pdev->device == PCI_DEVICE_ID_JMICRON_JMC260) ?
"JMC260 Fast Ethernet" : "Unknown",
(jme->fpgaver != 0) ? " (FPGA)" : "",
(jme->fpgaver != 0) ? jme->fpgaver : jme->chiprev,
jme->rev, netdev->dev_addr);
Expand Down Expand Up @@ -3002,7 +3006,7 @@ static struct pci_driver jme_driver = {
static int __init
jme_init_module(void)
{
printk(KERN_INFO PFX "JMicron JMC250 gigabit ethernet "
printk(KERN_INFO PFX "JMicron JMC2XX ethernet "
"driver version %s\n", DRV_VERSION);
return pci_register_driver(&jme_driver);
}
Expand Down

0 comments on commit c2d3ca3

Please sign in to comment.