Re: linux version codes

Cameron MacKinnon (mackin@interlog.com)
Fri, 11 Apr 1997 03:11:34 -0400


Marty Leisner wrote:
>
> I'm working to get a common module for the msr driver.
>
> Should there be defines for __LINUX__ = 2
> and __LINUX_MINOR__ = 0 or 1

The ncr53c8xx driver has, IMH^HO, the most elegant solution:

#define LinuxVersionCode(v, p, s) (((v)<<16)+((p)<<8)+(s))
#if LINUX_VERSION_CODE >= LinuxVersionCode(1,3,0)

Hope this helps. On a more bizarre and esoteric note, LINUX_VERSION_CODE
& (1<<8) should be false for production kernels, true for development.