diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-07-20 00:45:59 -0700 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-07-20 00:45:59 -0700 |
commit | d4d6f90d82150e74c1d11b906aa3a9c2239ee660 (patch) | |
tree | d0defbb223eb8f46bb55f80b578e881504146ec6 /v4l | |
parent | 8a55acadcb3c75ee7a84683f612607957468a132 (diff) | |
download | mediapointer-dvb-s2-d4d6f90d82150e74c1d11b906aa3a9c2239ee660.tar.gz mediapointer-dvb-s2-d4d6f90d82150e74c1d11b906aa3a9c2239ee660.tar.bz2 |
compat: set_freezable() version check off by 1
From: Trent Piepho <xyzzy@speakeasy.org>
The function wasn't added until after 2.6.22.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'v4l')
-rw-r--r-- | v4l/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/v4l/compat.h b/v4l/compat.h index b788e7be2..584d96035 100644 --- a/v4l/compat.h +++ b/v4l/compat.h @@ -5,7 +5,7 @@ #ifndef _COMPAT_H #define _COMPAT_H -#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22) +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23) # define set_freezable() #endif |