1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PARISC_MACHDEP_H
3 #define _PARISC_MACHDEP_H
4 
5 #include <linux/notifier.h>
6 
7 #define	MACH_RESTART	1
8 #define	MACH_HALT	2
9 #define MACH_POWER_ON	3
10 #define	MACH_POWER_OFF	4
11 
12 extern struct notifier_block *mach_notifier;
13 extern void pa7300lc_init(void);
14 
15 extern void (*cpu_lpmc)(int, struct pt_regs *);
16 
17 #endif
18