Messages in this thread |  | | | Date | Fri, 11 Apr 1997 03:11:34 -0400 | | From | Cameron MacKinnon <> | | Subject | Re: linux version codes |
| |
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.
|  |