From: kumar sourav Date: Thu, 24 Jan 2019 16:20:45 +0000 (+0530) Subject: hw: sd: set category of the sd memory card X-Git-Tag: v4.0.0-rc0~129^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2bbf3a91eb49aba488f586a06d15eb555a36e1e6;p=thirdparty%2Fqemu.git hw: sd: set category of the sd memory card Sets the category of the sd memory card as DEVICE_CATEGORY_STORAGE. Devices should be assigned to one of DEVICE_CATEGORY_XXXX. Signed-off-by: kumar sourav Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Thomas Huth Message-Id: <20190124162045.10474-1-sourav.jb1988@gmail.com> Signed-off-by: Laurent Vivier --- diff --git a/hw/sd/sd.c b/hw/sd/sd.c index d4356e9b734..aaab15f3868 100644 --- a/hw/sd/sd.c +++ b/hw/sd/sd.c @@ -2121,6 +2121,7 @@ static void sd_class_init(ObjectClass *klass, void *data) dc->vmsd = &sd_vmstate; dc->reset = sd_reset; dc->bus_type = TYPE_SD_BUS; + set_bit(DEVICE_CATEGORY_STORAGE, dc->categories); sc->set_voltage = sd_set_voltage; sc->get_dat_lines = sd_get_dat_lines;