X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/3b3161a197d32df3f889809e88bfe3b407b80148..20ef12080950c328702f590b53c50e328a03b971:/aseg/3c905.c diff --git a/aseg/3c905.c b/aseg/3c905.c index 82ad695..b89abe2 100644 --- a/aseg/3c905.c +++ b/aseg/3c905.c @@ -4,7 +4,7 @@ static int found = 0, _bus, _dev, _fn; -static int bother_3c905(pci_dev_t *dev) +static int bother_3c905(pci_dev_t *dev, void *nutrinus) { if (dev->vid == 0x10B7 || dev->did == 0x9200) { @@ -32,5 +32,5 @@ void eth_poll() void eth_init() { - pci_probe(bother_3c905); + pci_probe(bother_3c905, 0x0); }