diff options
author | Mao Zhongyi | 2017-06-27 08:16:50 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2017-07-03 21:29:49 +0200 |
commit | 9a7c2a59708f0d691569463b161e1b516948a41e (patch) | |
tree | 05947d2878c9974c6ab1d273aef2d73b0f0cf894 /hw/pci-bridge/i82801b11.c | |
parent | pci: Fix the wrong assertion. (diff) | |
download | qemu-9a7c2a59708f0d691569463b161e1b516948a41e.tar.gz qemu-9a7c2a59708f0d691569463b161e1b516948a41e.tar.xz qemu-9a7c2a59708f0d691569463b161e1b516948a41e.zip |
pci: Make errp the last parameter of pci_add_capability()
Add Error argument for pci_add_capability() to leverage the errp
to pass info on errors. This way is helpful for its callers to
make a better error handling when moving to 'realize'.
Cc: pbonzini@redhat.com
Cc: rth@twiddle.net
Cc: ehabkost@redhat.com
Cc: mst@redhat.com
Cc: jasowang@redhat.com
Cc: marcel@redhat.com
Cc: alex.williamson@redhat.com
Cc: armbru@redhat.com
Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci-bridge/i82801b11.c')
-rw-r--r-- | hw/pci-bridge/i82801b11.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/pci-bridge/i82801b11.c b/hw/pci-bridge/i82801b11.c index 2404e7ebae..2c065c37a7 100644 --- a/hw/pci-bridge/i82801b11.c +++ b/hw/pci-bridge/i82801b11.c @@ -44,6 +44,7 @@ #include "qemu/osdep.h" #include "hw/pci/pci.h" #include "hw/i386/ich9.h" +#include "qapi/error.h" /*****************************************************************************/ |