summary refs log tree commit diff stats
path: root/hw/sd/sd.c
diff options
context:
space:
mode:
authorkumar sourav <sourav.jb1988@gmail.com>2019-01-24 21:50:45 +0530
committerLaurent Vivier <laurent@vivier.eu>2019-01-30 10:24:20 +0100
commit2bbf3a91eb49aba488f586a06d15eb555a36e1e6 (patch)
tree91475cfd64f7a46963d6e7713a9c5c258b6bc3da /hw/sd/sd.c
parentcbe9ed73f905b532918603c04807bfa84d6051fb (diff)
downloadfocaccia-qemu-2bbf3a91eb49aba488f586a06d15eb555a36e1e6.tar.gz
focaccia-qemu-2bbf3a91eb49aba488f586a06d15eb555a36e1e6.zip
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 <sourav.jb1988@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190124162045.10474-1-sourav.jb1988@gmail.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/sd/sd.c')
-rw-r--r--hw/sd/sd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/sd/sd.c b/hw/sd/sd.c
index d4356e9b73..aaab15f386 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;