[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-trivial] [PATCH] hw: Add missing 'static' attribute for QEMUMachin
From: |
Stefan Weil |
Subject: |
[Qemu-trivial] [PATCH] hw: Add missing 'static' attribute for QEMUMachine |
Date: |
Wed, 3 Oct 2012 11:19:39 +0200 |
It was missing for leon3 and mips_fulong2e.
Signed-off-by: Stefan Weil <address@hidden>
---
hw/leon3.c | 2 +-
hw/mips/mips_fulong2e.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/leon3.c b/hw/leon3.c
index 878d3aa..7a9729d 100644
--- a/hw/leon3.c
+++ b/hw/leon3.c
@@ -210,7 +210,7 @@ static void leon3_generic_hw_init(ram_addr_t ram_size,
}
}
-QEMUMachine leon3_generic_machine = {
+static QEMUMachine leon3_generic_machine = {
.name = "leon3_generic",
.desc = "Leon-3 generic",
.init = leon3_generic_hw_init,
diff --git a/hw/mips/mips_fulong2e.c b/hw/mips/mips_fulong2e.c
index 38e4b86..d4a8672 100644
--- a/hw/mips/mips_fulong2e.c
+++ b/hw/mips/mips_fulong2e.c
@@ -392,7 +392,7 @@ static void mips_fulong2e_init(ram_addr_t ram_size, const
char *boot_device,
network_init();
}
-QEMUMachine mips_fulong2e_machine = {
+static QEMUMachine mips_fulong2e_machine = {
.name = "fulong2e",
.desc = "Fulong 2e mini pc",
.init = mips_fulong2e_init,
--
1.7.10
- [Qemu-trivial] [PATCH] hw: Add missing 'static' attribute for QEMUMachine,
Stefan Weil <=