net_rtl8139: This is a RTL8139C+ NIC
This commit is contained in:
@@ -1 +1 @@
|
|||||||
extern const device_t rtl8139c_device;
|
extern const device_t rtl8139c_plus_device;
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* This file is part of the 86Box distribution.
|
* This file is part of the 86Box distribution.
|
||||||
*
|
*
|
||||||
* Emulation of Realtek RTL8139C NIC.
|
* Emulation of Realtek RTL8139C+ NIC.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Authors: Cacodemon345
|
* Authors: Cacodemon345
|
||||||
@@ -3322,9 +3322,9 @@ nic_close(void *priv)
|
|||||||
free(priv);
|
free(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
const device_t rtl8139c_device = {
|
const device_t rtl8139c_plus_device = {
|
||||||
.name = "Realtek RTL8139C",
|
.name = "Realtek RTL8139C+",
|
||||||
.internal_name = "rtl8139c",
|
.internal_name = "rtl8139c+",
|
||||||
.flags = DEVICE_PCI,
|
.flags = DEVICE_PCI,
|
||||||
.local = 0,
|
.local = 0,
|
||||||
.init = nic_init,
|
.init = nic_init,
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ static const device_t *net_cards[] = {
|
|||||||
&rtl8029as_device,
|
&rtl8029as_device,
|
||||||
&pcnet_am79c960_vlb_device,
|
&pcnet_am79c960_vlb_device,
|
||||||
&dec_tulip_device,
|
&dec_tulip_device,
|
||||||
&rtl8139c_device,
|
&rtl8139c_plus_device,
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user