mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
17 lines
459 B
C
17 lines
459 B
C
#ifndef __ALPHA_COMPILER_H
|
|
#define __ALPHA_COMPILER_H
|
|
|
|
#include <uapi/asm/compiler.h>
|
|
|
|
/* Some idiots over in <linux/compiler.h> thought inline should imply
|
|
always_inline. This breaks stuff. We'll include this file whenever
|
|
we run into such problems. */
|
|
|
|
#include <linux/compiler.h>
|
|
#undef inline
|
|
#undef __inline__
|
|
#undef __inline
|
|
#undef __always_inline
|
|
#define __always_inline inline __attribute__((always_inline))
|
|
|
|
#endif /* __ALPHA_COMPILER_H */
|