iommu/vt-d: Simplify domain_context_mapping_one
[linux/fpc-iii.git] / arch / s390 / include / asm / reset.h
blob72786067b300528632dfb2a6f30917fddc48a2e1
1 /*
2 * Copyright IBM Corp. 2006
3 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
4 */
6 #ifndef _ASM_S390_RESET_H
7 #define _ASM_S390_RESET_H
9 #include <linux/list.h>
11 struct reset_call {
12 struct list_head list;
13 void (*fn)(void);
16 extern void register_reset_call(struct reset_call *reset);
17 extern void unregister_reset_call(struct reset_call *reset);
18 extern void s390_reset_system(void (*fn_pre)(void),
19 void (*fn_post)(void *), void *data);
20 #endif /* _ASM_S390_RESET_H */