From: Thomas Huth Date: Thu, 9 Mar 2017 18:37:53 +0000 (+0100) Subject: hw/ppc/pnv: Classify the "PowerNV Chip" devices as CPU devices X-Git-Tag: v2.10.0-rc0~227^2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9d169fb3c8c8434124677afa52824c4b15b62b65;p=thirdparty%2Fqemu.git hw/ppc/pnv: Classify the "PowerNV Chip" devices as CPU devices The devices that are derived from TYPE_PNV_CHIP currently show up as "uncategorized" devices in the help text of "-device ?". Since they obviously are related to the CPU, let's put them into the CPU category instead. Signed-off-by: Thomas Huth Signed-off-by: David Gibson --- diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 3fa722af82e..aad7917e82e 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -723,6 +723,7 @@ static void pnv_chip_class_init(ObjectClass *klass, void *data) { DeviceClass *dc = DEVICE_CLASS(klass); + set_bit(DEVICE_CATEGORY_CPU, dc->categories); dc->realize = pnv_chip_realize; dc->props = pnv_chip_properties; dc->desc = "PowerNV Chip";