]> Joshua Wise's Git repositories - netwatch.git/blob - netwatch/drivers.c
More ICH2-specific code diked out.
[netwatch.git] / netwatch / drivers.c
1 /* drivers.c
2  * PCI driver table
3  * NetWatch system management mode administration console
4  *
5  * Copyright (c) 2008 Jacob Potter and Joshua Wise.  All rights reserved.
6  * This program is free software; you can redistribute and/or modify it under
7  * the terms found in the file LICENSE in the root of this source tree.
8  *
9  */
10
11 #include <pci.h>
12
13 extern struct pci_driver a3c90x_driver;
14 extern struct pci_driver tnt2_driver;
15
16 struct pci_driver *drivers[] =
17 {
18         &a3c90x_driver,
19         &tnt2_driver,
20         0
21 };
22
This page took 0.027564 seconds and 4 git commands to generate.