]> Joshua Wise's Git repositories - netwatch.git/blob - gendrv/tnt2.c
tnt2 skel
[netwatch.git] / gendrv / tnt2.c
1 #include <io.h>
2 #include <pci.h>
3
4 static void *fbaddr;
5
6 static int tnt2_probe(struct pci_dev *pci, void *data)
7 {
8         
9 }
10
11 static struct pci_id tnt2_pci[] = {
12 {0x10DE, 0x0028, "TNT2", "RIVA TNT2"}
13 };
14
15 struct pci_driver tnt2_driver = {
16         .name     = "tnt2",
17         .probe    = tnt2_probe,
18         .ids      = tnt2_pci,
19         .id_count = sizeof(tnt2_pci)/sizeof(tnt2_pci[0]),
20 };
This page took 0.023773 seconds and 4 git commands to generate.