mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-02-08 11:40:32 +00:00
11 lines
298 B
C
11 lines
298 B
C
#ifndef __BACKPORT_LINUX_TIMER_H
|
|
#define __BACKPORT_LINUX_TIMER_H
|
|
#include_next <linux/timer.h>
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
|
|
#define round_jiffies_up LINUX_BACKPORT(round_jiffies_up)
|
|
unsigned long round_jiffies_up(unsigned long j);
|
|
#endif
|
|
|
|
#endif /* __BACKPORT_LINUX_TIMER_H */
|