fix(gic): quote the correct flag on error
Generic GIC driver files should use the USE_GIC_DRIVER flag. When that's
not the case, the correct flag should be quotes to avoid confusion.
Change-Id: I0b0443d52c0b0e81d7b380285a278ffdeae17ca3
Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
diff --git a/drivers/arm/gic/v2/gicv2_base.c b/drivers/arm/gic/v2/gicv2_base.c
index 317375f..c51c195 100644
--- a/drivers/arm/gic/v2/gicv2_base.c
+++ b/drivers/arm/gic/v2/gicv2_base.c
@@ -12,7 +12,7 @@
#include <plat/common/platform.h>
#if USE_GIC_DRIVER != 2
-#error "This file should only be used with GENERIC_GIC_DRIVER=2"
+#error "This file should only be used with USE_GIC_DRIVER=2"
#endif
/******************************************************************************
diff --git a/drivers/arm/gic/v3/gicv3_base.c b/drivers/arm/gic/v3/gicv3_base.c
index 3c97b01..57f2314 100644
--- a/drivers/arm/gic/v3/gicv3_base.c
+++ b/drivers/arm/gic/v3/gicv3_base.c
@@ -16,7 +16,7 @@
#include <plat/common/platform.h>
#if USE_GIC_DRIVER != 3
-#error "This file should only be used with GENERIC_GIC_DRIVER=3"
+#error "This file should only be used with USE_GIC_DRIVER=3"
#endif
/* The GICv3 driver only needs to be initialized in EL3 */