X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/c2e344475755ddbfa92e79f04b8009e2eafd459e..8ed5907015b127d1312c13216a8e4875c962da8e:/pci/pci.c diff --git a/pci/pci.c b/pci/pci.c index fbea894..997ebda 100644 --- a/pci/pci.c +++ b/pci/pci.c @@ -1,3 +1,13 @@ +/* pci.c + * General-purpose PCI probe routines + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + #include #include @@ -115,7 +125,7 @@ static int _probefn(pci_dev_t *dev, void *d) return 0; } -int pci_probe_driver(pci_driver_t driver) +int pci_probe_driver(pci_driver_t *driver) { - return pci_probe(_probefn, &driver); + return pci_probe(_probefn, driver); }