From: Joshua Wise Date: Tue, 25 Nov 2008 07:30:28 +0000 (-0500) Subject: tnt2 skel X-Git-Url: http://git.joshuawise.com/netwatch.git/commitdiff_plain/5e93b6b390b19dcfe8dbd4bd8bfac37e50bab28f tnt2 skel --- diff --git a/gendrv/tnt2.c b/gendrv/tnt2.c new file mode 100644 index 0000000..ead2266 --- /dev/null +++ b/gendrv/tnt2.c @@ -0,0 +1,20 @@ +#include +#include + +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]), +};