On Tue, May 14, 2002 at 01:04:46AM +0100, Jos? Fonseca wrote:
> 
> >     - for 2.5.x likewise, for which Micah patched the radeon kernel
> >
> >As of 2.5.9 the r128 driver looked identical to the 2.4.17 r128 driver.
> >If we can keep the source for converged between these two branches, that
> >would be ideal.

To make drivers (all of them working with 2.5.x kernel) it is pretty
much trivial ... and the changes are like these mostly :

MINOR() -> minor()
-               if (MINOR(inode->i_rdev) == DRM(minor)[i]) {
+               if (minor(inode->i_rdev) == DRM(minor)[i]) {

i_rdev is already of kdev_t :))

-       kdev_t       minor = MINOR(inode->i_rdev);
+       kdev_t       minor = inode->i_rdev;

a little bit more complex stuff is under drm_scatter.h 
and preemt_{disable,enable}() friends.



-- 
Zilvinas Valinskas

_______________________________________________________________

Have big pipes? SourceForge.net is looking for download mirrors. We supply
the hardware. You get the recognition. Email Us: [EMAIL PROTECTED]
_______________________________________________
Dri-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to