/* SPDX-License-Identifier: GPL-2.0 */1/*2* Copyright IBM Corp. 2000, 20093* Author(s): Hartmut Penner <[email protected]>,4* Martin Schwidefsky <[email protected]>,5* Christian Ehrhardt <[email protected]>,6*/78#ifndef _ASM_S390_CPU_H9#define _ASM_S390_CPU_H1011#ifndef __ASSEMBLER__1213#include <linux/types.h>14#include <linux/jump_label.h>1516struct cpuid17{18unsigned int version : 8;19unsigned int ident : 24;20unsigned int machine : 16;21unsigned int unused : 16;22} __attribute__ ((packed, aligned(8)));2324DECLARE_STATIC_KEY_FALSE(cpu_has_bear);2526#endif /* __ASSEMBLER__ */27#endif /* _ASM_S390_CPU_H */282930