AMD64 boards with AGP support are so old that the agp_amd64_pci_table should be complete and there is no need to probe unlisted PCI devices by default.
This also brings the driver inline with the global agp=try_unsupported (agp_try_unsupported_boot) parameter which also default to 0 and brings things inline with the Kconfig which says that agp_try_unsupported=1 should be passed to try unsupported bridges. Suggested-by: Lukas Wunner <lu...@wunner.de> Signed-off-by: Hans de Goede <ha...@kernel.org> --- drivers/char/agp/amd64-agp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c index 2505df1f4e69..f883c06b538a 100644 --- a/drivers/char/agp/amd64-agp.c +++ b/drivers/char/agp/amd64-agp.c @@ -34,7 +34,7 @@ #define ULI_X86_64_ENU_SCR_REG 0x54 static struct resource *aperture_resource; -static bool __initdata agp_try_unsupported = 1; +static bool agp_try_unsupported __initdata; static int agp_bridges_found; static void amd64_tlbflush(struct agp_memory *temp) -- 2.49.0