machdep.h (349B)
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 12extern struct notifier_block *mach_notifier; 13extern void pa7300lc_init(void); 14 15extern void (*cpu_lpmc)(int, struct pt_regs *); 16 17#endif