mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 19:36:44 +07:00
96433f6ee4
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com> Acked-by: Michael Cree <mcree@orcon.net.nz> Acked-by: Matt Turner <mattst88@gmail.com>
18 lines
459 B
C
18 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 */
|