blob: fbd546dd4feb658a88df1d895a2aeb822603b8bb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __NMI_H
#define __NMI_H
extern int __init nmi_init(void);
extern void perfctr_irq(int irq, struct pt_regs *regs);
extern void nmi_adjust_hz(unsigned int new_hz);
extern int nmi_usable;
#endif /* __NMI_H */
|