The category of the tosa-ssp device is not set, put it into the 'misc' category.
Signed-off-by: Gan Qixin <ganqi...@huawei.com> --- Cc: Peter Maydell <peter.mayd...@linaro.org> --- hw/arm/tosa.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/arm/tosa.c b/hw/arm/tosa.c index fe88ed89fe..0e3461c8ed 100644 --- a/hw/arm/tosa.c +++ b/hw/arm/tosa.c @@ -292,10 +292,12 @@ static const TypeInfo tosa_dac_info = { static void tosa_ssp_class_init(ObjectClass *klass, void *data) { + DeviceClass *dc = DEVICE_CLASS(klass); SSISlaveClass *k = SSI_SLAVE_CLASS(klass); k->realize = tosa_ssp_realize; k->transfer = tosa_ssp_tansfer; + set_bit(DEVICE_CATEGORY_MISC, dc->categories); } static const TypeInfo tosa_ssp_info = { -- 2.23.0