mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-01 06:21:52 -06:00
Add static to local machine declaration.
Variable akitapda_machine is only used locally, so the static attribute avoids a compiler warning. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
678e12cc90
commit
11be4b3e01
1 changed files with 1 additions and 1 deletions
|
@ -1037,7 +1037,7 @@ static void terrier_init(ram_addr_t ram_size,
|
||||||
kernel_cmdline, initrd_filename, cpu_model, terrier, 0x33f);
|
kernel_cmdline, initrd_filename, cpu_model, terrier, 0x33f);
|
||||||
}
|
}
|
||||||
|
|
||||||
QEMUMachine akitapda_machine = {
|
static QEMUMachine akitapda_machine = {
|
||||||
.name = "akita",
|
.name = "akita",
|
||||||
.desc = "Akita PDA (PXA270)",
|
.desc = "Akita PDA (PXA270)",
|
||||||
.init = akita_init,
|
.init = akita_init,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue