diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-10-07 12:27:25 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-11-01 16:52:09 -0500 |
commit | e1c2008af64487e7d3cec615612b7f467ebe9bc8 (patch) | |
tree | 167fef4694a67733ab984d28f3ad4561768d9e8b /hw/pcnet-pci.c | |
parent | 7ba7974197090285fdb413c6e1c41aaacd44b9c4 (diff) | |
download | qemu-e1c2008af64487e7d3cec615612b7f467ebe9bc8.zip |
pcnet: Add link state support
Update lnkst on link state changes so that guests can obtain this
information via reading back the LED output pin. Works for Linux but
not for guests that depend on the missing PHY.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pcnet-pci.c')
-rw-r--r-- | hw/pcnet-pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/pcnet-pci.c b/hw/pcnet-pci.c index ea5dfdef76..4e164da3ac 100644 --- a/hw/pcnet-pci.c +++ b/hw/pcnet-pci.c @@ -288,6 +288,7 @@ static NetClientInfo net_pci_pcnet_info = { .size = sizeof(NICState), .can_receive = pcnet_can_receive, .receive = pcnet_receive, + .link_status_changed = pcnet_set_link_status, .cleanup = pci_pcnet_cleanup, }; |