Remove kernel version check from rtc code

It should work with all currently supported kernels (>= 2.2.0).
This commit is contained in:
Miroslav Lichvar
2011-06-06 21:32:38 +02:00
parent eca08a281c
commit 6a2a837ede
3 changed files with 0 additions and 68 deletions

View File

@@ -1087,16 +1087,6 @@ SYS_Linux_Finalise(void)
/* ================================================== */
void
SYS_Linux_GetKernelVersion(int *major, int *minor, int *patchlevel)
{
*major = version_major;
*minor = version_minor;
*patchlevel = version_patchlevel;
}
/* ================================================== */
#ifdef FEAT_LINUXCAPS
void
SYS_Linux_DropRoot(char *user)