acrn-hypervisor/hypervisor/include
Junjie Mao ef3cb5ba1c treewide: remove unnecessary unnamed structs/unions
According to the syntax defined in C99, each struct/union field must have an
identifier. This patch removes unnamed struct/union fields that can be easily
expressed in a C99-compatible way.

Here is a summary of structs/unions removed.

struct vhm_request:

    union {
        uint32_t type;                  uint32_t type;
        int32_t reserved0[16];    =>    int32_t reserved0[15];
    };

struct vhm_request_buffer:

    struct vhm_request_buffer {
        union {                         union vhm_request_buffer {
            struct vhm_request ...; =>        struct vhm_request ...;
            int8_t reserved[4096];            int8_t reserved[4096];
        }                               }
    }

Signed-off-by: Junjie Mao <junjie.mao@intel.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
2018-05-29 14:12:15 +08:00
..
arch/x86 vmexit: refine vmexit loop 2018-05-24 13:42:19 +08:00
common page walk during copy_from_vm/copy_to_vm 2018-05-24 13:42:19 +08:00
debug hv:Merge dump_interrupt and dump_exception to a commond API 2018-05-23 13:38:52 +08:00
lib HV: further cleanup of header inclusions 2018-05-25 10:45:56 +08:00
public treewide: remove unnecessary unnamed structs/unions 2018-05-29 14:12:15 +08:00
hv_debug.h initial import 2018-05-11 14:44:28 +08:00
hv_lib.h hv: lib: split atomic operation to atomic.h 2018-05-18 10:52:31 +08:00
hypervisor.h HV: further cleanup of header inclusions 2018-05-25 10:45:56 +08:00