Commit 177d9e0d authored by Markus Armbruster's avatar Markus Armbruster
Browse files

Normalize header guard symbol definition.



We commonly define the header guard symbol without an explicit value.
Normalize the exceptions.

Done with scripts/clean-header-guards.pl.

Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
Message-Id: <20190315145123.28030-8-armbru@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
parent a8b991b5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -22,8 +22,9 @@
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#ifndef HW_M48T59_INTERNAL_H
#define HW_M48T59_INTERNAL_H 1
#define HW_M48T59_INTERNAL_H

#define M48T59_DEBUG 0

+1 −1
Original line number Diff line number Diff line
#ifndef QEMU_CAPSTONE_H
#define QEMU_CAPSTONE_H 1
#define QEMU_CAPSTONE_H

#ifdef CONFIG_CAPSTONE

+1 −1
Original line number Diff line number Diff line
#ifndef HW_SCSI_EMULATION_H
#define HW_SCSI_EMULATION_H 1
#define HW_SCSI_EMULATION_H

typedef struct SCSIBlockLimits {
    bool wsnz;
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
 */

#ifndef QEMU_STATS64_H
#define QEMU_STATS64_H 1
#define QEMU_STATS64_H

#include "qemu/atomic.h"

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 */

#ifndef QEMU_SYS_MEMBARRIER_H
#define QEMU_SYS_MEMBARRIER_H 1
#define QEMU_SYS_MEMBARRIER_H

#ifdef CONFIG_MEMBARRIER
/* Only block reordering at the compiler level in the performance-critical
Loading