From: Greg Kroah-Hartman Date: Thu, 20 Aug 2009 19:12:31 +0000 (-0700) Subject: Staging: hv: remove volatile usage from HvSynicApi.h X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0d08737cadc38515695540522cd8ceaa975506b4;p=linux-beck.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/include/HvSynicApi.h b/drivers/staging/hv/include/HvSynicApi.h index 7e3db63d2e1d..3e6151d7eb6c 100644 --- a/drivers/staging/hv/include/HvSynicApi.h +++ b/drivers/staging/hv/include/HvSynicApi.h @@ -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. */