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>
This commit is contained in:
Wei Jiangang 2016-04-14 11:58:02 +08:00 committed by Michael Tokarev
parent 3f3b5388d4
commit bdc3f61dec
2 changed files with 2 additions and 4 deletions

View file

@ -56,6 +56,6 @@ typedef struct AccelClass {
extern int tcg_tb_size;
int configure_accelerator(MachineState *ms);
void configure_accelerator(MachineState *ms);
#endif