diff options
author | Wei Jiangang <weijg.fnst@cn.fujitsu.com> | 2016-04-14 11:58:02 +0800 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2016-05-18 15:04:27 +0300 |
commit | bdc3f61dec2f9c227235bb5f677a0272e1184c82 (patch) | |
tree | 0a4af7b223cf52390eeed6471e9917f32aab5f79 /accel.c | |
parent | 3f3b5388d400a4e26718328809e6546b21fb4588 (diff) | |
download | qemu-bdc3f61dec2f9c227235bb5f677a0272e1184c82.tar.gz qemu-bdc3f61dec2f9c227235bb5f677a0272e1184c82.tar.bz2 qemu-bdc3f61dec2f9c227235bb5f677a0272e1184c82.zip |
accel: make configure_accelerator return void
Return the negated value of accel_initialised is meaningless,
and the caller vl doesn't check it.
Signed-off-by: Wei Jiangang <weijg.fnst@cn.fujitsu.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'accel.c')
-rw-r--r-- | accel.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -77,7 +77,7 @@ static int accel_init_machine(AccelClass *acc, MachineState *ms) return ret; } -int configure_accelerator(MachineState *ms) +void configure_accelerator(MachineState *ms) { const char *p; char buf[10]; @@ -128,8 +128,6 @@ int configure_accelerator(MachineState *ms) if (init_failed) { fprintf(stderr, "Back to %s accelerator.\n", acc->name); } - - return !accel_initialised; } |