Clean up ill-advised or unusual header guards

Cleaned up with scripts/clean-header-guards.pl.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
Markus Armbruster 2016-06-29 13:47:03 +02:00
parent 965379b455
commit 2a6a4076e1
141 changed files with 385 additions and 378 deletions

View file

@ -11,8 +11,8 @@
*
*/
#ifndef _QEMU_BALLOON_H
#define _QEMU_BALLOON_H
#ifndef QEMU_BALLOON_H
#define QEMU_BALLOON_H
#include "qapi-types.h"

View file

@ -11,8 +11,8 @@
*
*/
#ifndef __DEVICE_TREE_H__
#define __DEVICE_TREE_H__
#ifndef DEVICE_TREE_H
#define DEVICE_TREE_H
void *create_device_tree(int *sizep);
void *load_device_tree(const char *filename_path, int *sizep);
@ -168,4 +168,4 @@ int qemu_fdt_setprop_sized_cells_from_array(void *fdt,
#define FDT_PCI_RANGE_IOPORT 0x01000000
#define FDT_PCI_RANGE_CONFIG 0x00000000
#endif /* __DEVICE_TREE_H__ */
#endif /* DEVICE_TREE_H */