Commit f5bc6f99 authored by Dave Jones's avatar Dave Jones

Fix XFree86 brain damage.

we can't go to 1.0 until they fix some real stupidity in XFree86.
It's only by chance we can bump past 0.99 at all due to some boolean logic error.
parent 5882eeaf
...@@ -36,8 +36,11 @@ ...@@ -36,8 +36,11 @@
#include <linux/agp_backend.h> #include <linux/agp_backend.h>
#include "agp.h" #include "agp.h"
#define AGPGART_VERSION_MAJOR 1 /* Due to XFree86 brain-damage, we can't go to 1.0 until they
#define AGPGART_VERSION_MINOR 0 * fix some real stupidity. It's only by chance we can bump
* past 0.99 at all due to some boolean logic error. */
#define AGPGART_VERSION_MAJOR 0
#define AGPGART_VERSION_MINOR 100
struct agp_bridge_data agp_bridge = { .type = NOT_SUPPORTED }; struct agp_bridge_data agp_bridge = { .type = NOT_SUPPORTED };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment