]> Joshua Wise's Git repositories - netwatch.git/commitdiff
tnt2 skel
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Tue, 25 Nov 2008 07:30:28 +0000 (02:30 -0500)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Tue, 25 Nov 2008 07:30:28 +0000 (02:30 -0500)
gendrv/tnt2.c [new file with mode: 0644]

diff --git a/gendrv/tnt2.c b/gendrv/tnt2.c
new file mode 100644 (file)
index 0000000..ead2266
--- /dev/null
@@ -0,0 +1,20 @@
+#include <io.h>
+#include <pci.h>
+
+static void *fbaddr;
+
+static int tnt2_probe(struct pci_dev *pci, void *data)
+{
+       
+}
+
+static struct pci_id tnt2_pci[] = {
+{0x10DE, 0x0028, "TNT2", "RIVA TNT2"}
+};
+
+struct pci_driver tnt2_driver = {
+       .name     = "tnt2",
+       .probe    = tnt2_probe,
+       .ids      = tnt2_pci,
+       .id_count = sizeof(tnt2_pci)/sizeof(tnt2_pci[0]),
+};
This page took 0.025098 seconds and 4 git commands to generate.