|
@@ -767,16 +767,19 @@ int __init agp_amd64_init(void)
|
|
|
|
|
|
static int __init agp_amd64_mod_init(void)
|
|
static int __init agp_amd64_mod_init(void)
|
|
{
|
|
{
|
|
|
|
+#ifndef MODULE
|
|
if (gart_iommu_aperture)
|
|
if (gart_iommu_aperture)
|
|
return agp_bridges_found ? 0 : -ENODEV;
|
|
return agp_bridges_found ? 0 : -ENODEV;
|
|
-
|
|
|
|
|
|
+#endif
|
|
return agp_amd64_init();
|
|
return agp_amd64_init();
|
|
}
|
|
}
|
|
|
|
|
|
static void __exit agp_amd64_cleanup(void)
|
|
static void __exit agp_amd64_cleanup(void)
|
|
{
|
|
{
|
|
|
|
+#ifndef MODULE
|
|
if (gart_iommu_aperture)
|
|
if (gart_iommu_aperture)
|
|
return;
|
|
return;
|
|
|
|
+#endif
|
|
if (aperture_resource)
|
|
if (aperture_resource)
|
|
release_resource(aperture_resource);
|
|
release_resource(aperture_resource);
|
|
pci_unregister_driver(&agp_amd64_pci_driver);
|
|
pci_unregister_driver(&agp_amd64_pci_driver);
|