aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/shared/msr.h
blob: 1e6ec10b3a151218a55049f324a6e1236ad6489f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_X86_SHARED_MSR_H
#define _ASM_X86_SHARED_MSR_H

struct msr {
	union {
		struct {
			u32 l;
			u32 h;
		};
		u64 q;
	};
};

#endif /* _ASM_X86_SHARED_MSR_H */