summaryrefslogtreecommitdiff
path: root/datapath/compat.h
blob: 12100ae396b024a56ee7130d4e66d698b46ef00a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef COMPAT_H
#define COMPAT_H 1

#include <linux/version.h>

#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)

#include "compat26.h"

#else

#include "compat24.h"

#endif


#endif /* compat.h */