Clean up a header guard symbols (again)
authorMarkus Armbruster <armbru@redhat.com>
Fri, 7 Jun 2019 14:13:21 +0000 (16:13 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Wed, 12 Jun 2019 11:20:21 +0000 (13:20 +0200)
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>

contrib/vhost-user-gpu/virgl.h
contrib/vhost-user-gpu/vugbm.h
contrib/vhost-user-gpu/vugpu.h
hw/display/virtio-vga.h

index f952bc9d4fbf430d6b2505340b73513d84c1b01c..17078783a50f2af5b481c3292fde5c205b2201b2 100644 (file)
@@ -11,8 +11,9 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * See the COPYING file in the top-level directory.
  */
-#ifndef VUGPU_VIRGL_H_
-#define VUGPU_VIRGL_H_
+
+#ifndef VUGPU_VIRGL_H
+#define VUGPU_VIRGL_H
 
 #include "vugpu.h"
 
index c0bf27af9ba2ab121e826d26a4cb5f18c47cc8eb..07e698fcd74ba48cbdb800d966840d7b436ade07 100644 (file)
@@ -6,8 +6,9 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * See the COPYING file in the top-level directory.
  */
-#ifndef VHOST_USER_GPU_GBM_H
-#define VHOST_USER_GPU_GBM_H
+
+#ifndef VHOST_USER_GPU_VUGBM_H
+#define VHOST_USER_GPU_VUGBM_H
 
 #include "qemu/osdep.h"
 
index 458e92a1b31a498a533d386e8c4925c632da88ca..3153c9a6de1409b8a0f0bc16b287865973f01226 100644 (file)
@@ -11,8 +11,9 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * See the COPYING file in the top-level directory.
  */
-#ifndef VUGPU_H_
-#define VUGPU_H_
+
+#ifndef VUGPU_H
+#define VUGPU_H
 
 #include "qemu/osdep.h"
 
index c10bf390aac49abb925bbe31800d9729c038f050..c41281a0106f14d03903bbca4afb895e727f79ff 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef VIRTIO_VGA_H_
-#define VIRTIO_VGA_H_
+#ifndef VIRTIO_VGA_H
+#define VIRTIO_VGA_H
 
 #include "hw/virtio/virtio-gpu-pci.h"
 #include "vga_int.h"
@@ -29,4 +29,4 @@ typedef struct VirtIOVGABaseClass {
     DeviceReset parent_reset;
 } VirtIOVGABaseClass;
 
-#endif /* VIRTIO_VGA_H_ */
+#endif /* VIRTIO_VGA_H */