qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

Clean up a header guard symbols (again)

Commit d52c454aad "contrib: add vhost-user-gpu" and "c68082c43a
virtio-gpu: split virtio-gpu-pci & virtio-vga" created headers with
unusual header guard symbols. Clean them up

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190607141321.9726-1-armbru@redhat.com>

+12 -9
+3 -2
contrib/vhost-user-gpu/virgl.h
··· 11 11 * This work is licensed under the terms of the GNU GPL, version 2 or later. 12 12 * See the COPYING file in the top-level directory. 13 13 */ 14 - #ifndef VUGPU_VIRGL_H_ 15 - #define VUGPU_VIRGL_H_ 14 + 15 + #ifndef VUGPU_VIRGL_H 16 + #define VUGPU_VIRGL_H 16 17 17 18 #include "vugpu.h" 18 19
+3 -2
contrib/vhost-user-gpu/vugbm.h
··· 6 6 * This work is licensed under the terms of the GNU GPL, version 2 or later. 7 7 * See the COPYING file in the top-level directory. 8 8 */ 9 - #ifndef VHOST_USER_GPU_GBM_H 10 - #define VHOST_USER_GPU_GBM_H 9 + 10 + #ifndef VHOST_USER_GPU_VUGBM_H 11 + #define VHOST_USER_GPU_VUGBM_H 11 12 12 13 #include "qemu/osdep.h" 13 14
+3 -2
contrib/vhost-user-gpu/vugpu.h
··· 11 11 * This work is licensed under the terms of the GNU GPL, version 2 or later. 12 12 * See the COPYING file in the top-level directory. 13 13 */ 14 - #ifndef VUGPU_H_ 15 - #define VUGPU_H_ 14 + 15 + #ifndef VUGPU_H 16 + #define VUGPU_H 16 17 17 18 #include "qemu/osdep.h" 18 19
+3 -3
hw/display/virtio-vga.h
··· 1 - #ifndef VIRTIO_VGA_H_ 2 - #define VIRTIO_VGA_H_ 1 + #ifndef VIRTIO_VGA_H 2 + #define VIRTIO_VGA_H 3 3 4 4 #include "hw/virtio/virtio-gpu-pci.h" 5 5 #include "vga_int.h" ··· 29 29 DeviceReset parent_reset; 30 30 } VirtIOVGABaseClass; 31 31 32 - #endif /* VIRTIO_VGA_H_ */ 32 + #endif /* VIRTIO_VGA_H */