]> Joshua Wise's Git repositories - netwatch.git/blame - netwatch/drivers.c
Slightly permute the USB_LEGKEY stuff.
[netwatch.git] / netwatch / drivers.c
CommitLineData
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
13extern struct pci_driver a3c90x_driver;
14extern struct pci_driver tnt2_driver;
15
16struct pci_driver *drivers[] =
17{
18 &a3c90x_driver,
19 &tnt2_driver,
20 0
21};
22
This page took 0.022498 seconds and 4 git commands to generate.