Clean up .available & .poll
This commit is contained in:
@@ -1633,7 +1633,7 @@ const device_t ne1000_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = ne1000_config
|
||||
@@ -1647,7 +1647,7 @@ const device_t ne1000_compat_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = ne1000_compat_config
|
||||
@@ -1661,7 +1661,7 @@ const device_t ne2000_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = ne2000_config
|
||||
@@ -1675,7 +1675,7 @@ const device_t ne2000_compat_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = ne2000_compat_config
|
||||
@@ -1689,7 +1689,7 @@ const device_t ne2000_compat_8bit_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = ne2000_compat_8bit_config
|
||||
@@ -1703,7 +1703,7 @@ const device_t ethernext_mc_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = mca_mac_config
|
||||
@@ -1717,7 +1717,7 @@ const device_t rtl8019as_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = rtl8019as_available },
|
||||
.available = rtl8019as_available,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = rtl8019as_config
|
||||
@@ -1731,7 +1731,7 @@ const device_t de220p_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = de220p_available },
|
||||
.available = de220p_available,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = rtl8019as_config
|
||||
@@ -1745,7 +1745,7 @@ const device_t rtl8029as_device = {
|
||||
.init = nic_init,
|
||||
.close = nic_close,
|
||||
.reset = NULL,
|
||||
{ .available = NULL },
|
||||
.available = NULL,
|
||||
.speed_changed = NULL,
|
||||
.force_redraw = NULL,
|
||||
.config = rtl8029as_config
|
||||
|
||||
Reference in New Issue
Block a user