mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
Staging: hv: remove volatile usage from HvSynicApi.h
It's pretty pointless as no one is using this structure, but even so the use of volatile is so wrong here it's sad... Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
eacb1b4d24
commit
0d08737cad
@ -212,7 +212,7 @@ struct hv_message {
|
||||
|
||||
/* Define the synthetic interrupt message page layout. */
|
||||
struct hv_message_page {
|
||||
volatile struct hv_message SintMessage[HV_SYNIC_SINT_COUNT];
|
||||
struct hv_message SintMessage[HV_SYNIC_SINT_COUNT];
|
||||
};
|
||||
|
||||
/* Define the synthetic interrupt controller event flags format. */
|
||||
@ -223,7 +223,7 @@ union hv_synic_event_flags {
|
||||
|
||||
/* Define the synthetic interrupt flags page layout. */
|
||||
struct hv_synic_event_flags_page {
|
||||
volatile union hv_synic_event_flags SintEventFlags[HV_SYNIC_SINT_COUNT];
|
||||
union hv_synic_event_flags SintEventFlags[HV_SYNIC_SINT_COUNT];
|
||||
};
|
||||
|
||||
/* Define SynIC control register. */
|
||||
|
Loading…
Reference in New Issue
Block a user