mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
1e941d3949
.boot.preserved.data is a better fit for ipl block than .boot.data which is discarded after init. Reusing .boot.preserved.data allows to simplify code a little bit and avoid copying data from .boot.data to persistent variables. Signed-off-by: Vasily Gorbik <gor@linux.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
12 lines
275 B
C
12 lines
275 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_S390_BOOT_DATA_H
|
|
|
|
#include <asm/setup.h>
|
|
#include <asm/ipl.h>
|
|
|
|
extern char early_command_line[COMMAND_LINE_SIZE];
|
|
extern struct ipl_parameter_block ipl_block;
|
|
extern int ipl_block_valid;
|
|
|
|
#endif /* _ASM_S390_BOOT_DATA_H */
|