https://github.com/torvalds/linux
Raw File
Tip revision: 4f5cafb5cb8471e54afdc9054d973535614f7675 authored by Linus Torvalds on 13 October 2019, 23:37:36 UTC
Linux 5.4-rc3
Tip revision: 4f5cafb
cyclone.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ASM_IA64_CYCLONE_H
#define ASM_IA64_CYCLONE_H

#ifdef	CONFIG_IA64_CYCLONE
extern int use_cyclone;
extern void __init cyclone_setup(void);
#else	/* CONFIG_IA64_CYCLONE */
#define use_cyclone 0
static inline void cyclone_setup(void)
{
	printk(KERN_ERR "Cyclone Counter: System not configured"
					" w/ CONFIG_IA64_CYCLONE.\n");
}
#endif	/* CONFIG_IA64_CYCLONE */
#endif	/* !ASM_IA64_CYCLONE_H */
back to top