mips: use object_new() instead of gnew()+object_initialize()
commit81491c2846b7a818eb069dbc5f688537e382fc83
authorIgor Mammedov <imammedo@redhat.com>
Thu, 5 Oct 2017 13:51:09 +0000 (5 15:51 +0200)
committerEduardo Habkost <ehabkost@redhat.com>
Fri, 27 Oct 2017 14:04:28 +0000 (27 16:04 +0200)
treed13ea83e3a2a270df9e84c0c4ef68de12797b6d5
parente9135ab399efd4aa2edc3da691d211475172e91e
mips: use object_new() instead of gnew()+object_initialize()

object_initialize() is intended for inplace initialization of
objects, but here it's first allocated with g_new0() and then
initialized with object_initialize(). QEMU already has API
to do this (object_new), so do object creation with suitable
for usecase API.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <1507211474-188400-36-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
hw/mips/boston.c
hw/mips/mips_malta.c