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