mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 08:43:31 +00:00
16 lines
210 B
C
16 lines
210 B
C
![]() |
/* 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 */
|