xref: /openbmc/linux/arch/x86/include/asm/shared/msr.h (revision 4f2c0a4acffbec01079c28f839422e64ddeff004)
1*176db622SMichael Roth /* SPDX-License-Identifier: GPL-2.0 */
2*176db622SMichael Roth #ifndef _ASM_X86_SHARED_MSR_H
3*176db622SMichael Roth #define _ASM_X86_SHARED_MSR_H
4*176db622SMichael Roth 
5*176db622SMichael Roth struct msr {
6*176db622SMichael Roth 	union {
7*176db622SMichael Roth 		struct {
8*176db622SMichael Roth 			u32 l;
9*176db622SMichael Roth 			u32 h;
10*176db622SMichael Roth 		};
11*176db622SMichael Roth 		u64 q;
12*176db622SMichael Roth 	};
13*176db622SMichael Roth };
14*176db622SMichael Roth 
15*176db622SMichael Roth #endif /* _ASM_X86_SHARED_MSR_H */
16