diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-02-05 10:10:36 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-02-05 10:10:36 +0000 |
commit | 7cc825f5946659ad586fd4aa4fd867a1373f3373 (patch) | |
tree | d87f4a6961d15c857d9fab00bcfd6a0bea51af53 /linux-core/drm_compat.h | |
parent | c9772f8c037667ed3586337f90904e7978f8ab14 (diff) |
Add missing round_jiffies_relative() for older kernels
Diffstat (limited to 'linux-core/drm_compat.h')
-rw-r--r-- | linux-core/drm_compat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-core/drm_compat.h b/linux-core/drm_compat.h index c3a70486..92dcbc21 100644 --- a/linux-core/drm_compat.h +++ b/linux-core/drm_compat.h @@ -331,4 +331,8 @@ void idr_remove_all(struct idr *idp); void *idr_replace(struct idr *idp, void *ptr, int id); #endif +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)) +extern unsigned long round_jiffies_relative(unsigned long j); +#endif + #endif |