diff options
author | David Dawes <dawes@xfree86.org> | 2001-04-09 16:27:54 +0000 |
---|---|---|
committer | David Dawes <dawes@xfree86.org> | 2001-04-09 16:27:54 +0000 |
commit | 1759c16ab9b64598968a0058039e8a66bf5f9773 (patch) | |
tree | a82d44dc47302041daf1f5f408c6f47017baac47 /bsd/tdfx | |
parent | 0e7f6c0726e5ff08eeab8e17a5aa63fbe44b3410 (diff) |
Import -f XFree86 4.0.99.2
Diffstat (limited to 'bsd/tdfx')
-rw-r--r-- | bsd/tdfx/Makefile | 2 | ||||
-rw-r--r-- | bsd/tdfx/tdfx_drv.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/bsd/tdfx/Makefile b/bsd/tdfx/Makefile index 471a5fbf..4362a5ba 100644 --- a/bsd/tdfx/Makefile +++ b/bsd/tdfx/Makefile @@ -3,7 +3,7 @@ KMOD = tdfx SRCS = tdfx_drv.c tdfx_context.c SRCS += device_if.h bus_if.h pci_if.h -CFLAGS += ${DEBUG_FLAGS} -I.. +CFLAGS += ${DEBUG_FLAGS} -I. -I.. KMODDEPS = drm @: diff --git a/bsd/tdfx/tdfx_drv.c b/bsd/tdfx/tdfx_drv.c index 91e7d560..202df7c3 100644 --- a/bsd/tdfx/tdfx_drv.c +++ b/bsd/tdfx/tdfx_drv.c @@ -42,7 +42,7 @@ MODULE_DEPEND(tdfx, agp, 1, 1, 1); #define TDFX_NAME "tdfx" #define TDFX_DESC "tdfx" -#define TDFX_DATE "19991009" +#define TDFX_DATE "20000928" #define TDFX_MAJOR 1 #define TDFX_MINOR 0 #define TDFX_PATCHLEVEL 0 @@ -64,6 +64,9 @@ static int tdfx_probe(device_t dev) case 0x0005121a: s = "3Dfx Voodoo 3 graphics accelerator"; break; + case 0x0009121a: + s = "3Dfx Voodoo 5 graphics accelerator"; + break; } if (s) { |