Use consistent naming conventions.

This commit is contained in:
Matt Borgerson 2015-08-21 19:12:50 -07:00
parent c107b96789
commit 8d1b6f6592
2 changed files with 4 additions and 4 deletions

View File

@ -139,9 +139,9 @@ static uint8_t smc_read_data(SMBusDevice *dev, uint8_t cmd, int n)
return SMC_REG_AVPACK_COMPOSITE;
case SMC_REG_SCRATCH: {
/* Skip boot animation if the "skipanim" flag was set. */
/* Skip boot animation if the "short_animation" flag was set. */
QemuOpts *opts = qemu_opts_find(qemu_find_opts("machine"), NULL);
if (opts && qemu_opt_get_bool(opts, "skipanim", 0))
if (opts && qemu_opt_get_bool(opts, "short_animation", 0))
{
return SMC_REG_SCRATCH_SHORT_ANIMATION;
}

4
vl.c
View File

@ -441,9 +441,9 @@ static QemuOptsList qemu_machine_opts = {
.type = QEMU_OPT_STRING,
.help = "Chihiro mediaboard filesystem file",
},{
.name = "skipanim",
.name = "short_animation",
.type = QEMU_OPT_BOOL,
.help = "Skip boot animation",
.help = "Skip Xbox boot animation",
},
{ /* End of list */ }
},