backend.c (c1f3ee120bb61045b1c0a3ead620d1d65af47130) | backend.c (a13af4b4d842da6d7065b8c73fa8f0ac58fea1b6) |
---|---|
1/* 2 * AGPGART driver backend routines. 3 * Copyright (C) 2004 Silicon Graphics, Inc. 4 * Copyright (C) 2002-2003 Dave Jones. 5 * Copyright (C) 1999 Jeff Hartmann. 6 * Copyright (C) 1999 Precision Insight, Inc. 7 * Copyright (C) 1999 Xi Graphics, Inc. 8 * --- 29 unchanged lines hidden (view full) --- 38#include <linux/vmalloc.h> 39#include <asm/io.h> 40#include "agp.h" 41 42/* Due to XFree86 brain-damage, we can't go to 1.0 until they 43 * fix some real stupidity. It's only by chance we can bump 44 * past 0.99 at all due to some boolean logic error. */ 45#define AGPGART_VERSION_MAJOR 0 | 1/* 2 * AGPGART driver backend routines. 3 * Copyright (C) 2004 Silicon Graphics, Inc. 4 * Copyright (C) 2002-2003 Dave Jones. 5 * Copyright (C) 1999 Jeff Hartmann. 6 * Copyright (C) 1999 Precision Insight, Inc. 7 * Copyright (C) 1999 Xi Graphics, Inc. 8 * --- 29 unchanged lines hidden (view full) --- 38#include <linux/vmalloc.h> 39#include <asm/io.h> 40#include "agp.h" 41 42/* Due to XFree86 brain-damage, we can't go to 1.0 until they 43 * fix some real stupidity. It's only by chance we can bump 44 * past 0.99 at all due to some boolean logic error. */ 45#define AGPGART_VERSION_MAJOR 0 |
46#define AGPGART_VERSION_MINOR 102 | 46#define AGPGART_VERSION_MINOR 103 |
47static const struct agp_version agp_current_version = 48{ 49 .major = AGPGART_VERSION_MAJOR, 50 .minor = AGPGART_VERSION_MINOR, 51}; 52 53struct agp_bridge_data *(*agp_find_bridge)(struct pci_dev *) = 54 &agp_generic_find_bridge; --- 299 unchanged lines hidden --- | 47static const struct agp_version agp_current_version = 48{ 49 .major = AGPGART_VERSION_MAJOR, 50 .minor = AGPGART_VERSION_MINOR, 51}; 52 53struct agp_bridge_data *(*agp_find_bridge)(struct pci_dev *) = 54 &agp_generic_find_bridge; --- 299 unchanged lines hidden --- |