tag 375001 + patch thanks Here's a small patch to make the fglrx driver build with 2.6.17 kernels:
--- /usr/src/modules/fglrx/firegl_public.c 2006-04-22 15:59:55.000000000 +0200 +++ firegl_public.c 2006-06-26 11:49:18.010773318 +0200 @@ -225,7 +225,12 @@ /* global module vars and constants - defined trough macros */ MODULE_AUTHOR("Fire GL - ATI Research GmbH, Germany"); MODULE_DESCRIPTION("ATI Fire GL"); -MODULE_PARM(firegl, "s"); +/* MODULE_PARM is obsolete */ +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,16) + MODULE_PARM(firegl, "s"); +#else + module_param(firegl, charp, 0400); +#endif #ifdef MODULE_LICENSE MODULE_LICENSE("Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY"); #endif -- Kind regards, +--------------------------------------------------------------------+ | Bas Zoetekouw | GPG key: 0644fab7 | |----------------------------| Fingerprint: c1f5 f24c d514 3fec 8bf6 | | [EMAIL PROTECTED], [EMAIL PROTECTED] | a2b1 2bae e41f 0644 fab7 | +--------------------------------------------------------------------+ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]