GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / s390 / include / asm / reset.h
blobf584f4a525814821ea25a9a061ca5dc0d5e03df6
1 /*
2 * include/asm-s390/reset.h
4 * Copyright IBM Corp. 2006
5 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
6 */
8 #ifndef _ASM_S390_RESET_H
9 #define _ASM_S390_RESET_H
11 #include <linux/list.h>
13 struct reset_call {
14 struct list_head list;
15 void (*fn)(void);
18 extern void register_reset_call(struct reset_call *reset);
19 extern void unregister_reset_call(struct reset_call *reset);
20 extern void s390_reset_system(void);
21 #endif /* _ASM_S390_RESET_H */