Commit 3301335f authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: remove volatile from struct log_info_t

There's no need for last_cycles to be declared volatile. Take that out.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0520cfb1
......@@ -279,7 +279,7 @@ static inline s64 issue_vmcall_measurement_do_nothing(void)
}
struct log_info_t {
volatile unsigned long long last_cycles;
unsigned long long last_cycles;
unsigned long long delta_sum[64];
unsigned long long delta_cnt[64];
unsigned long long max_delta[64];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment