mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-03-22 12:05:53 +00:00
18 lines
340 B
C
Executable File
18 lines
340 B
C
Executable File
#ifndef __BACKPORT_LINUX_COMPILER_H
|
|
#define __BACKPORT_LINUX_COMPILER_H
|
|
#include_next <linux/compiler.h>
|
|
|
|
#ifndef __rcu
|
|
#define __rcu
|
|
#endif
|
|
|
|
#ifndef __always_unused
|
|
#ifdef __GNUC__
|
|
#define __always_unused __attribute__((unused))
|
|
#else
|
|
#define __always_unused /* unimplemented */
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* __BACKPORT_LINUX_COMPILER_H */
|