mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 01:21:58 +00:00
sis190: better message on unknown PHY
Signed-off-by: Riccardo Ghetta <birrachiara@tin.it> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
744c6b2976
commit
c3223d2446
1 changed files with 9 additions and 6 deletions
|
@ -347,7 +347,7 @@ static struct {
|
||||||
u32 msg_enable;
|
u32 msg_enable;
|
||||||
} debug = { -1 };
|
} debug = { -1 };
|
||||||
|
|
||||||
MODULE_DESCRIPTION("SiS sis190 Gigabit Ethernet driver");
|
MODULE_DESCRIPTION("SiS sis190/191 Gigabit Ethernet driver");
|
||||||
module_param(rx_copybreak, int, 0);
|
module_param(rx_copybreak, int, 0);
|
||||||
MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
|
MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
|
||||||
module_param_named(debug, debug.msg_enable, int, 0);
|
module_param_named(debug, debug.msg_enable, int, 0);
|
||||||
|
@ -1313,12 +1313,15 @@ static void sis190_init_phy(struct net_device *dev, struct sis190_private *tp,
|
||||||
((mii_status & (BMSR_100FULL | BMSR_100HALF)) ?
|
((mii_status & (BMSR_100FULL | BMSR_100HALF)) ?
|
||||||
LAN : HOME) : p->type;
|
LAN : HOME) : p->type;
|
||||||
tp->features |= p->feature;
|
tp->features |= p->feature;
|
||||||
} else
|
|
||||||
phy->type = UNKNOWN;
|
|
||||||
|
|
||||||
net_probe(tp, KERN_INFO "%s: %s transceiver at address %d.\n",
|
net_probe(tp, KERN_INFO "%s: %s transceiver at address %d.\n",
|
||||||
|
pci_name(tp->pci_dev), p->name, phy_id);
|
||||||
|
} else {
|
||||||
|
phy->type = UNKNOWN;
|
||||||
|
net_probe(tp, KERN_INFO
|
||||||
|
"%s: unknown PHY 0x%x:0x%x transceiver at address %d\n",
|
||||||
pci_name(tp->pci_dev),
|
pci_name(tp->pci_dev),
|
||||||
(phy->type == UNKNOWN) ? "Unknown PHY" : p->name, phy_id);
|
phy->id[0], (phy->id[1] & 0xfff0), phy_id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sis190_mii_probe_88e1111_fixup(struct sis190_private *tp)
|
static void sis190_mii_probe_88e1111_fixup(struct sis190_private *tp)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue