mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
598d76562c
Fix the following sparse complaints: arch/s390/purgatory/purgatory.c:18:5: warning: symbol 'kernel_entry' was not declared. Should it be static? arch/s390/purgatory/purgatory.c:19:5: warning: symbol 'kernel_type' was not declared. Should it be static? arch/s390/purgatory/purgatory.c:21:5: warning: symbol 'crash_start' was not declared. Should it be static? arch/s390/purgatory/purgatory.c:22:5: warning: symbol 'crash_size' was not declared. Should it be static? Signed-off-by: Sebastian Ott <sebott@linux.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
24 lines
427 B
C
24 lines
427 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright IBM Corp. 2018
|
|
*
|
|
* Author(s): Philipp Rudo <prudo@linux.vnet.ibm.com>
|
|
*/
|
|
|
|
#ifndef _S390_PURGATORY_H_
|
|
#define _S390_PURGATORY_H_
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <linux/purgatory.h>
|
|
|
|
int verify_sha256_digest(void);
|
|
|
|
extern u64 kernel_entry;
|
|
extern u64 kernel_type;
|
|
|
|
extern u64 crash_start;
|
|
extern u64 crash_size;
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
#endif /* _S390_PURGATORY_H_ */
|