diff options
author | Gan Qixin <ganqixin@huawei.com> | 2020-11-12 20:58:23 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-11-17 10:17:02 +0100 |
commit | 84aab60c126606928bef36aab3613bd209f58b31 (patch) | |
tree | 0a78791012ea4f8dc74a7505caaf0ce4e3f2be3e /hw | |
parent | be3701eae3781a56d3e328cb39c30970f133e857 (diff) | |
download | qemu-84aab60c126606928bef36aab3613bd209f58b31.zip |
nand: put it into the 'storage' category
The category of the nand device is not set, put it into the 'storage'
category.
Signed-off-by: Gan Qixin <ganqixin@huawei.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20201112125824.763182-4-ganqixin@huawei.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/block/nand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/block/nand.c b/hw/block/nand.c index bcceb64ebb..1d7a48a2ec 100644 --- a/hw/block/nand.c +++ b/hw/block/nand.c @@ -449,6 +449,7 @@ static void nand_class_init(ObjectClass *klass, void *data) dc->reset = nand_reset; dc->vmsd = &vmstate_nand; device_class_set_props(dc, nand_properties); + set_bit(DEVICE_CATEGORY_STORAGE, dc->categories); } static const TypeInfo nand_info = { |