Commit c8ac8050 authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[AGPGART] Remove CONFIG_AGP3.

This optioned saved just a handful of bytes, and uglied up the code 
quite a lot. Saving less than a page of memory is not as important as
maintainable code.
parent 4d31324f
...@@ -29,10 +29,6 @@ config AGP_GART ...@@ -29,10 +29,6 @@ config AGP_GART
bool "/dev/agpgart (AGP Support)" bool "/dev/agpgart (AGP Support)"
depends on GART_IOMMU depends on GART_IOMMU
config AGP3
bool "AGP 3.0 compliance (EXPERIMENTAL)"
depends on AGP
config AGP_INTEL config AGP_INTEL
tristate "Intel 440LX/BX/GX, I8xx and E7x05 support" tristate "Intel 440LX/BX/GX, I8xx and E7x05 support"
depends on AGP depends on AGP
......
...@@ -3,8 +3,7 @@ ...@@ -3,8 +3,7 @@
# space ioctl interface to use agp memory. It also adds a kernel interface # space ioctl interface to use agp memory. It also adds a kernel interface
# that other drivers could use to manipulate agp memory. # that other drivers could use to manipulate agp memory.
agpgart-y := backend.o frontend.o generic.o agpgart-y := backend.o frontend.o generic.o generic-3.0.o
agpgart-$(CONFIG_AGP3) += generic-3.0.o
agpgart-objs := $(agpgart-y) agpgart-objs := $(agpgart-y)
obj-$(CONFIG_AGP) += agpgart.o obj-$(CONFIG_AGP) += agpgart.o
......
...@@ -402,7 +402,6 @@ void agp_generic_enable(u32 mode) ...@@ -402,7 +402,6 @@ void agp_generic_enable(u32 mode)
minor = (ncapid >> 16) & 0xf; minor = (ncapid >> 16) & 0xf;
printk(KERN_INFO PFX "Found an AGP %d.%d compliant device.\n",major, minor); printk(KERN_INFO PFX "Found an AGP %d.%d compliant device.\n",major, minor);
#ifdef CONFIG_AGP3
if(major >= 3) { if(major >= 3) {
u32 agp_3_0; u32 agp_3_0;
...@@ -415,7 +414,6 @@ void agp_generic_enable(u32 mode) ...@@ -415,7 +414,6 @@ void agp_generic_enable(u32 mode)
printk (KERN_INFO PFX "not in AGP 3.0 mode, falling back to 2.x\n"); printk (KERN_INFO PFX "not in AGP 3.0 mode, falling back to 2.x\n");
} }
} }
#endif
/* AGP v<3 */ /* AGP v<3 */
pci_read_config_dword(agp_bridge->dev, pci_read_config_dword(agp_bridge->dev,
......
...@@ -101,7 +101,6 @@ static struct gatt_mask via_generic_masks[] = ...@@ -101,7 +101,6 @@ static struct gatt_mask via_generic_masks[] =
}; };
#ifdef CONFIG_AGP3
static int via_fetch_size_agp3(void) static int via_fetch_size_agp3(void)
{ {
int i; int i;
...@@ -206,18 +205,10 @@ static int __init via_generic_agp3_setup (struct pci_dev *pdev) ...@@ -206,18 +205,10 @@ static int __init via_generic_agp3_setup (struct pci_dev *pdev)
agp_bridge->cant_use_aperture = 0; agp_bridge->cant_use_aperture = 0;
return 0; return 0;
} }
#else
static int __init via_generic_agp3_setup (struct pci_dev *pdev)
{
printk (KERN_INFO PFX "Bridge in AGP3 mode, but CONFIG_AGP3=n\n");
return -ENODEV;
}
#endif /* CONFIG_AGP3 */
static int __init via_generic_setup (struct pci_dev *pdev) static int __init via_generic_setup (struct pci_dev *pdev)
{ {
#ifdef CONFIG_AGP3
/* Garg, there are KT400s with KT266 IDs. */ /* Garg, there are KT400s with KT266 IDs. */
if (pdev->device == PCI_DEVICE_ID_VIA_8367_0) { if (pdev->device == PCI_DEVICE_ID_VIA_8367_0) {
...@@ -235,7 +226,6 @@ static int __init via_generic_setup (struct pci_dev *pdev) ...@@ -235,7 +226,6 @@ static int __init via_generic_setup (struct pci_dev *pdev)
/* Its in 2.0 mode, drop through. */ /* Its in 2.0 mode, drop through. */
} }
} }
#endif
agp_bridge->masks = via_generic_masks; agp_bridge->masks = via_generic_masks;
agp_bridge->aperture_sizes = (void *) via_generic_sizes; agp_bridge->aperture_sizes = (void *) via_generic_sizes;
......
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