Commit 34e9aa48 authored by Cha Young-Ho's avatar Cha Young-Ho Committed by Dave Jones

[AGP] kconfig tweaks & missing exports.

parent f5bc6f99
...@@ -30,7 +30,7 @@ config AGP_GART ...@@ -30,7 +30,7 @@ config AGP_GART
depends on GART_IOMMU depends on GART_IOMMU
config AGP_INTEL config AGP_INTEL
bool "Intel 440LX/BX/GX and I815/I820/I830M/I830MP/I840/I845/I850/I860 support" tristate "Intel 440LX/BX/GX and I815/I820/I830M/I830MP/I840/I845/I850/I860 support"
depends on AGP depends on AGP
help help
This option gives you AGP support for the GLX component of the This option gives you AGP support for the GLX component of the
...@@ -40,7 +40,7 @@ config AGP_INTEL ...@@ -40,7 +40,7 @@ config AGP_INTEL
use GLX or DRI. If unsure, say N. use GLX or DRI. If unsure, say N.
#config AGP_I810 #config AGP_I810
# bool "Intel I810/I815/I830M (on-board) support" # tristate "Intel I810/I815/I830M (on-board) support"
# depends on AGP # depends on AGP
# help # help
# This option gives you AGP support for the Xserver on the Intel 810 # This option gives you AGP support for the Xserver on the Intel 810
...@@ -48,7 +48,7 @@ config AGP_INTEL ...@@ -48,7 +48,7 @@ config AGP_INTEL
# is required to do any useful video modes with these boards. # is required to do any useful video modes with these boards.
config AGP_VIA config AGP_VIA
bool "VIA chipset support" tristate "VIA chipset support"
depends on AGP depends on AGP
help help
This option gives you AGP support for the GLX component of the This option gives you AGP support for the GLX component of the
...@@ -58,7 +58,7 @@ config AGP_VIA ...@@ -58,7 +58,7 @@ config AGP_VIA
use GLX or DRI. If unsure, say N. use GLX or DRI. If unsure, say N.
config AGP_AMD config AGP_AMD
bool "AMD Irongate, 761, and 762 support" tristate "AMD Irongate, 761, and 762 support"
depends on AGP depends on AGP
help help
This option gives you AGP support for the GLX component of the This option gives you AGP support for the GLX component of the
...@@ -68,7 +68,7 @@ config AGP_AMD ...@@ -68,7 +68,7 @@ config AGP_AMD
use GLX or DRI. If unsure, say N. use GLX or DRI. If unsure, say N.
config AGP_SIS config AGP_SIS
bool "Generic SiS support" tristate "Generic SiS support"
depends on AGP depends on AGP
help help
This option gives you AGP support for the GLX component of the "soon This option gives you AGP support for the GLX component of the "soon
...@@ -81,7 +81,7 @@ config AGP_SIS ...@@ -81,7 +81,7 @@ config AGP_SIS
use GLX or DRI. If unsure, say N. use GLX or DRI. If unsure, say N.
config AGP_ALI config AGP_ALI
bool "ALI chipset support" tristate "ALI chipset support"
depends on AGP depends on AGP
---help--- ---help---
This option gives you AGP support for the GLX component of the This option gives you AGP support for the GLX component of the
...@@ -99,14 +99,14 @@ config AGP_ALI ...@@ -99,14 +99,14 @@ config AGP_ALI
use GLX or DRI. If unsure, say N. use GLX or DRI. If unsure, say N.
config AGP_SWORKS config AGP_SWORKS
bool "Serverworks LE/HE support" tristate "Serverworks LE/HE support"
depends on AGP depends on AGP
help help
Say Y here to support the Serverworks AGP card. See Say Y here to support the Serverworks AGP card. See
<http://www.serverworks.com/> for product descriptions and images. <http://www.serverworks.com/> for product descriptions and images.
config AGP_AMD_8151 config AGP_AMD_8151
bool "AMD 8151 support" tristate "AMD 8151 support"
depends on AGP depends on AGP
default GART_IOMMU default GART_IOMMU
help help
...@@ -114,14 +114,14 @@ config AGP_AMD_8151 ...@@ -114,14 +114,14 @@ config AGP_AMD_8151
GART on the AMD Athlon64/Opteron ("Hammer") CPUs. GART on the AMD Athlon64/Opteron ("Hammer") CPUs.
config AGP_I460 config AGP_I460
bool "Intel 460GX support" tristate "Intel 460GX support"
depends on AGP && IA64 depends on AGP && IA64
help help
This option gives you AGP GART support for the Intel 460GX chipset This option gives you AGP GART support for the Intel 460GX chipset
for IA64 processors. for IA64 processors.
config AGP_HP_ZX1 config AGP_HP_ZX1
bool "HP ZX1 AGP support" tristate "HP ZX1 AGP support"
depends on AGP && IA64 depends on AGP && IA64
help help
This option gives you AGP GART support for the HP ZX1 chipset This option gives you AGP GART support for the HP ZX1 chipset
......
...@@ -289,6 +289,7 @@ module_init(agp_init); ...@@ -289,6 +289,7 @@ module_init(agp_init);
EXPORT_SYMBOL(agp_backend_acquire); EXPORT_SYMBOL(agp_backend_acquire);
EXPORT_SYMBOL(agp_backend_release); EXPORT_SYMBOL(agp_backend_release);
EXPORT_SYMBOL_GPL(agp_register_driver); EXPORT_SYMBOL_GPL(agp_register_driver);
EXPORT_SYMBOL_GPL(agp_unregister_driver);
MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>"); MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>");
MODULE_LICENSE("GPL and additional rights"); MODULE_LICENSE("GPL and additional rights");
...@@ -693,7 +693,23 @@ void agp_enable(u32 mode) ...@@ -693,7 +693,23 @@ void agp_enable(u32 mode)
EXPORT_SYMBOL(agp_free_memory); EXPORT_SYMBOL(agp_free_memory);
EXPORT_SYMBOL(agp_allocate_memory); EXPORT_SYMBOL(agp_allocate_memory);
EXPORT_SYMBOL(agp_copy_info); EXPORT_SYMBOL(agp_copy_info);
EXPORT_SYMBOL(agp_create_memory);
EXPORT_SYMBOL(agp_bind_memory); EXPORT_SYMBOL(agp_bind_memory);
EXPORT_SYMBOL(agp_unbind_memory); EXPORT_SYMBOL(agp_unbind_memory);
EXPORT_SYMBOL(agp_free_key);
EXPORT_SYMBOL(agp_enable); EXPORT_SYMBOL(agp_enable);
EXPORT_SYMBOL(agp_bridge);
EXPORT_SYMBOL(agp_generic_alloc_page);
EXPORT_SYMBOL(agp_generic_destroy_page);
EXPORT_SYMBOL(agp_generic_suspend);
EXPORT_SYMBOL(agp_generic_resume);
EXPORT_SYMBOL(agp_generic_agp_enable);
EXPORT_SYMBOL(agp_generic_create_gatt_table);
EXPORT_SYMBOL(agp_generic_free_gatt_table);
EXPORT_SYMBOL(agp_generic_insert_memory);
EXPORT_SYMBOL(agp_generic_remove_memory);
EXPORT_SYMBOL(agp_generic_alloc_by_type);
EXPORT_SYMBOL(agp_generic_free_by_type);
EXPORT_SYMBOL(global_cache_flush);
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