]>
Commit | Line | Data |
---|---|---|
3c4e084d JP |
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 | ||
34a7d0d2 JW |
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 |