From fecb230ebd53f3efbf197c1e3fc4830fb9238afc Mon Sep 17 00:00:00 2001 From: Cuda-Chen Date: Tue, 3 Sep 2024 16:34:59 +0800 Subject: [PATCH] Rename macros with SEMU_FEATURE prefix Rename macros with SEMU_FEATURE prefix from SEMU_FEATUREXXX to SEMU_FEATURE_XXX. --- feature.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/feature.h b/feature.h index e17718ad..1dee984a 100644 --- a/feature.h +++ b/feature.h @@ -3,13 +3,13 @@ /* enable/disable (compile time) features in this header */ /* virtio-blk */ -#ifndef SEMU_FEATUREVIRTIOBLK -#define SEMU_FEATUREVIRTIOBLK 1 +#ifndef SEMU_FEATURE_VIRTIOBLK +#define SEMU_FEATURE_VIRTIOBLK 1 #endif /* virtio-net */ -#ifndef SEMU_FEATUREVIRTIONET -#define SEMU_FEATUREVIRTIONET 1 +#ifndef SEMU_FEATURE_VIRTIONET +#define SEMU_FEATURE_VIRTIONET 1 #endif /* Feature test macro */