On Tue, 16 Jun 2009, Ryan Hope wrote:
> 
> +#ifdef MODULE
>  module_init(radeon_init);
> +#else
> +late_initcall(radeon_init);
> +#endif


You should never need something like that.

Just do

        late_initcall(radeon_init);

and if it's a module (which doesn't have "early" vs "late" etc), it will 
just be a normal module_init.

                Linus

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to