From: Laurent Vivier <laurent@vivier.eu>
To: qemu-devel@nongnu.org
Cc: "David Hildenbrand" <david@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Jiri Slaby" <jslaby@suse.cz>,
qemu-s390x@nongnu.org, "Cornelia Huck" <cohuck@redhat.com>,
"Kevin Wolf" <kwolf@redhat.com>,
"Richard Henderson" <rth@twiddle.net>,
"Igor Mammedov" <imammedo@redhat.com>,
"Peter Crosthwaite" <crosthwaite.peter@gmail.com>,
"Riku Voipio" <riku.voipio@iki.fi>,
"Stefan Hajnoczi" <stefanha@redhat.com>,
"Stafford Horne" <shorne@gmail.com>,
"Laurent Vivier" <laurent@vivier.eu>,
"Eduardo Habkost" <ehabkost@redhat.com>,
qemu-block@nongnu.org, qemu-trivial@nongnu.org,
"Max Reitz" <mreitz@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Michael Tokarev" <mjt@tls.msk.ru>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Bastian Koppelmann" <kbastian@mail.uni-paderborn.de>,
"kumar sourav" <sourav.jb1988@gmail.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Thomas Huth" <thuth@redhat.com>
Subject: [Qemu-devel] [PULL 04/13] hw: sd: set category of the sd memory card
Date: Wed, 30 Jan 2019 14:22:05 +0100 [thread overview]
Message-ID: <20190130132214.25493-5-laurent@vivier.eu> (raw)
In-Reply-To: <20190130132214.25493-1-laurent@vivier.eu>
From: kumar sourav <sourav.jb1988@gmail.com>
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>
---
hw/sd/sd.c | 1 +
1 file changed, 1 insertion(+)
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;
--
2.20.1
next prev parent reply other threads:[~2019-01-30 13:23 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-30 13:22 [Qemu-devel] [PULL 00/13] Trivial branch patches Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 01/13] hw: edu: set category of the edu device Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 02/13] typo: apci->acpi Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 03/13] hw: input: set category of the i8042 device Laurent Vivier
2019-01-30 13:22 ` Laurent Vivier [this message]
2019-01-30 13:22 ` [Qemu-devel] [PULL 05/13] Don't talk about the LGPL if the file is licensed under the GPL Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 06/13] COPYING.LIB: Synchronize the LGPL 2.1 with the version from gnu.org Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 07/13] target/openrisc: Fix LGPL version number Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 08/13] target/tricore: " Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 09/13] tcg: " Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 10/13] target/s390x: Fix LGPL version in the file header comments Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 11/13] target/m68k: Fix LGPL information in the file headers Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 12/13] hw/block: clean up stale xen_disk trace entries Laurent Vivier
2019-01-30 13:22 ` [Qemu-devel] [PULL 13/13] virtio-blk: remove duplicate definition of VirtIOBlock *s pointer Laurent Vivier
2019-01-31 18:59 ` [Qemu-devel] [PULL 00/13] Trivial branch patches Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190130132214.25493-5-laurent@vivier.eu \
--to=laurent@vivier.eu \
--cc=berrange@redhat.com \
--cc=cohuck@redhat.com \
--cc=crosthwaite.peter@gmail.com \
--cc=david@redhat.com \
--cc=ehabkost@redhat.com \
--cc=f4bug@amsat.org \
--cc=imammedo@redhat.com \
--cc=jslaby@suse.cz \
--cc=kbastian@mail.uni-paderborn.de \
--cc=kwolf@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mjt@tls.msk.ru \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=rth@twiddle.net \
--cc=shorne@gmail.com \
--cc=sourav.jb1988@gmail.com \
--cc=stefanha@redhat.com \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).