X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/d6f56afa7470cf4c29f4f9fa4bf2dd1bd0ba9193..c2e344475755ddbfa92e79f04b8009e2eafd459e:/net/net.c diff --git a/net/net.c b/net/net.c index 18eaddf..575b5e4 100644 --- a/net/net.c +++ b/net/net.c @@ -3,26 +3,26 @@ #include #include "net.h" -struct nic nic; +static struct nic *_nic = 0x0; -static int bother_3c905(pci_dev_t *dev, void *nutrinus) +extern struct pci_driver a3c90x_driver; + +void eth_poll() { - if (dev->vid == 0x10B7 || dev->did == 0x9200) - { - outputf("Found a 3c905 to bother"); - - pci_bother_add(dev); - return 1; - } - return 0; + if (_nic) + _nic->poll(_nic, 0); } -void eth_poll() +int eth_register(struct nic *nic) { - /* ... */ + if (_nic) + return -1; + _nic = nic; + return 0; } void eth_init() { - pci_probe(bother_3c905, 0x0); + if (pci_probe_driver(a3c90x_driver)) + outputf("found 3c90x, hopefully!"); }