s390/comments: unify copyright messages and remove file names
[linux-block.git] / arch / s390 / include / asm / reset.h
CommitLineData
15e9b586 1/*
15e9b586
HC
2 * Copyright IBM Corp. 2006
3 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
4 */
5
6#ifndef _ASM_S390_RESET_H
7#define _ASM_S390_RESET_H
8
9#include <linux/list.h>
10
11struct reset_call {
12 struct list_head list;
13 void (*fn)(void);
14};
15
16extern void register_reset_call(struct reset_call *reset);
17extern void unregister_reset_call(struct reset_call *reset);
60a0c68d 18extern void s390_reset_system(void (*func)(void *), void *data);
15e9b586 19#endif /* _ASM_S390_RESET_H */