backend.c (accba5f3965d6a9d1bf7c1e1a7995d17e9d521b6) | backend.c (f4432c5caec5fa95ea7eefd00f8e6cee17e2e023) |
---|---|
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 * --- 335 unchanged lines hidden (view full) --- 344 agp_off = 1; 345 if (!strcmp(s,"try_unsupported")) 346 agp_try_unsupported_boot = 1; 347 return 1; 348} 349__setup("agp=", agp_setup); 350#endif 351 | 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 * --- 335 unchanged lines hidden (view full) --- 344 agp_off = 1; 345 if (!strcmp(s,"try_unsupported")) 346 agp_try_unsupported_boot = 1; 347 return 1; 348} 349__setup("agp=", agp_setup); 350#endif 351 |
352MODULE_AUTHOR("Dave Jones <davej@codemonkey.org.uk>"); | 352MODULE_AUTHOR("Dave Jones <davej@redhat.com>"); |
353MODULE_DESCRIPTION("AGP GART driver"); 354MODULE_LICENSE("GPL and additional rights"); 355MODULE_ALIAS_MISCDEV(AGPGART_MINOR); 356 357module_init(agp_init); 358module_exit(agp_exit); 359 | 353MODULE_DESCRIPTION("AGP GART driver"); 354MODULE_LICENSE("GPL and additional rights"); 355MODULE_ALIAS_MISCDEV(AGPGART_MINOR); 356 357module_init(agp_init); 358module_exit(agp_exit); 359 |