mirror of
https://github.com/AlexisTM/RT-WiFi.git
synced 2024-12-20 06:08:11 +00:00
20 lines
433 B
C
20 lines
433 B
C
|
#ifndef _COMPAT_LINUX_EXPORT_H
|
||
|
#define _COMPAT_LINUX_EXPORT_H 1
|
||
|
|
||
|
#include <linux/version.h>
|
||
|
|
||
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0))
|
||
|
#include_next <linux/export.h>
|
||
|
#else
|
||
|
#ifndef pr_fmt
|
||
|
#define backport_undef_pr_fmt
|
||
|
#endif
|
||
|
#include <linux/module.h>
|
||
|
#ifdef backport_undef_pr_fmt
|
||
|
#undef pr_fmt
|
||
|
#undef backport_undef_pr_fmt
|
||
|
#endif
|
||
|
#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) */
|
||
|
|
||
|
#endif /* _COMPAT_LINUX_EXPORT_H */
|